Skip to content

Commit

Permalink
Whitespace fix for KeyValueStoreTest
Browse files Browse the repository at this point in the history
  • Loading branch information
darkwatchuk committed Sep 18, 2024
1 parent cca1932 commit baadaf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/NATS.Client.KeyValueStore.Tests/KeyValueStoreTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -664,16 +664,16 @@ public async Task Test_CombinedSources()
var storeCombined = await kv.CreateStoreAsync(new NatsKVConfig("combined")
{
Sources = [
new StreamSource { Name = "source1" },
new StreamSource { Name = "source2" }
new StreamSource { Name = "source1" },
new StreamSource { Name = "source2" }
],
});

await storeSource1.PutAsync("ss1_a", "a_fromStore1");
await storeSource2.PutAsync("ss2_b", "b_fromStore2");

// ensure any async replication
await Task.Delay(1000);
await Task.Delay(500);

var entryA = await storeCombined.GetEntryAsync<string>("ss1_a");
var entryB = await storeCombined.GetEntryAsync<string>("ss2_b");
Expand Down

0 comments on commit baadaf1

Please sign in to comment.