Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converter doco #133

Merged
merged 20 commits into from
May 24, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update VerifyBase_Tuple.cs
  • Loading branch information
SimonCropp committed May 23, 2020
commit 232e17ea5010d88eaa1f056662619c60c8deb8c2
4 changes: 2 additions & 2 deletions src/Verify.MSTest/VerifyBase_Tuple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ namespace VerifyMSTest
public partial class VerifyBase
{
public async Task Verify(
Expression<Func<ITuple>> expression,
Expression<Func<ITuple>> target,
VerifySettings? settings = null,
[CallerFilePath] string sourceFile = "")
{
using var verifier = BuildVerifier(sourceFile, settings);
await verifier.Verify(expression);
await verifier.Verify(target);
}
}
}
Expand Down