Skip to content

Commit 818dc7e

Browse files
committed
Small fix.
1 parent e6b8b35 commit 818dc7e

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

tests/MongoDB.Bson.Tests/Serialization/Conventions/ConventionRunnerTests.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,7 @@ public void Apply(BsonMemberMap memberMap)
170170
RunOrder = _orderIndexProvider();
171171
}
172172

173-
public void Apply(BsonMemberMap memberMap, IBsonSerializationDomain domain)
174-
{
175-
throw new NotImplementedException();
176-
}
173+
public void Apply(BsonMemberMap memberMap, IBsonSerializationDomain domain) => Apply(memberMap);
177174
}
178175

179176
private class TrackingAfterConvention : IPostProcessingConvention, ITrackRun
@@ -200,10 +197,7 @@ public void PostProcess(BsonClassMap classMap)
200197
RunOrder = _orderIndexProvider();
201198
}
202199

203-
public void PostProcess(BsonClassMap classMap, IBsonSerializationDomain domain)
204-
{
205-
throw new NotImplementedException();
206-
}
200+
public void PostProcess(BsonClassMap classMap, IBsonSerializationDomain domain) => PostProcess(classMap);
207201
}
208202
}
209203
}

tests/MongoDB.Driver.Tests/MultipleRegistriesTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
namespace MongoDB.Driver.Tests
2626
{
27+
[Trait("Category", "Integration")]
2728
public class MultipleRegistriesTests
2829
{
2930
[Fact]

0 commit comments

Comments
 (0)