Skip to content

Commit 3a54c4f

Browse files
committed
test: align inventory counts for fifo and reparse
1 parent 2b69698 commit 3a54c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestInventoryBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ public async Task Test_ReparsePoint()
714714

715715
inventory = inventoryBuilder.Inventory!;
716716
inventory.InventoryParts.Count.Should().Be(1);
717-
inventory.InventoryParts[0].DirectoryDescriptions.Count.Should().Be(0);
717+
inventory.InventoryParts[0].DirectoryDescriptions.Count.Should().Be(1);
718718
inventory.InventoryParts[0].FileDescriptions.Count.Should().Be(2);
719719
}
720720

@@ -757,7 +757,7 @@ public async Task Test_PosixFifo_IsSkipped()
757757

758758
inventory = inventoryBuilder.Inventory!;
759759
inventory.InventoryParts.Count.Should().Be(1);
760-
inventory.InventoryParts[0].DirectoryDescriptions.Count.Should().Be(1);
760+
inventory.InventoryParts[0].DirectoryDescriptions.Count.Should().Be(0);
761761
inventory.InventoryParts[0].FileDescriptions.Count.Should().Be(2);
762762

763763
var fifoDescription = inventory.InventoryParts[0].FileDescriptions.Single(fd => fd.Name.Equals("pipeA"));

0 commit comments

Comments
 (0)