Skip to content

Commit 803d872

Browse files
committed
UnitTests: migrate NotaryAssisted test from MSTestV1 to MSTestV2
Signed-off-by: Anna Shaleva <[email protected]>
1 parent ee4232a commit 803d872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Neo.UnitTests/Network/P2P/Payloads/UT_NotaryAssisted.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void DeserializeAndSerialize()
5858

5959
// Wrong type
6060
buffer[0] = 0xff;
61-
Assert.ThrowsException<FormatException>(() =>
61+
Assert.ThrowsExactly<FormatException>(() =>
6262
{
6363
var reader = new MemoryReader(buffer);
6464
TransactionAttribute.DeserializeFrom(ref reader);

0 commit comments

Comments
 (0)