Skip to content

Commit 0759e79

Browse files
committed
CSHARP-2499: Allow IDEs to run JSON tests in .NET Core
1 parent c82584e commit 0759e79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MongoDB.Bson.TestHelpers/JsonDrivenTests/JsonDrivenTestCase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void Serialize(IXunitSerializationInfo info)
5555
{
5656
info.AddValue(nameof(_name), _name);
5757
info.AddValue(nameof(_shared), _shared.ToJson());
58-
info.AddValue(nameof(_test), _shared.ToJson());
58+
info.AddValue(nameof(_test), _test.ToJson());
5959
}
6060

6161
public override string ToString()

0 commit comments

Comments
 (0)