File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/Hazelcast.Net.Tests/Serialization/Compact Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public async Task TearDown()
5252
5353 private async Task < string > SetUpCluster ( Schema schema )
5454 {
55+ HConsole . Configure ( c=> c . ConfigureDefaults ( this ) ) ;
5556 var options = GetHazelcastOptions ( ) ;
5657
5758 // note: do *not* provide the ThingCompactSerializer<Thing> so that we force-use the
@@ -83,6 +84,7 @@ private HazelcastOptions GetHazelcastOptions()
8384 [ Test ]
8485 public async Task AddNothing_FetchSchema_ValidTypeName ( )
8586 {
87+ HConsole . Configure ( c=> c . ConfigureDefaults ( this ) ) ;
8688 var mapName = await SetUpCluster ( SchemaBuilder
8789 . For ( CompactOptions . GetDefaultTypeName < Thing > ( ) )
8890 . WithField ( "name" , FieldKind . String )
@@ -101,6 +103,8 @@ public async Task AddNothing_FetchSchema_ValidTypeName()
101103 [ Test ]
102104 public async Task AddNothing_FetchSchema_InvalidTypeName ( )
103105 {
106+ HConsole . Configure ( c=> c . ConfigureDefaults ( this ) ) ;
107+
104108 var mapName = await SetUpCluster ( SchemaBuilder
105109 . For ( "thing" )
106110 . WithField ( "name" , FieldKind . String )
You can’t perform that action at this time.
0 commit comments