Skip to content

Commit

Permalink
Fixed test failing on german culture (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan authored Nov 6, 2024
1 parent 6bf1809 commit be8f9e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sdk/Speckle.Connectors.Tests/ProgressDisplayManagerTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using FluentAssertions;
using FluentAssertions;
using NUnit.Framework;
using Speckle.Connectors.Common.Operations;
using Speckle.Sdk.Transports;
Expand All @@ -21,6 +21,7 @@ public void TestPercentage(long count, long? total, double? percentage)
}

[Test]
[SetCulture("en-GB")]
[TestCase(1, 1, 6, 10, "5.00 bytes / sec")]
[TestCase(1, 0, 6, 10, "0 bytes / sec")] //infinity
[TestCase(1 * 1024 * 1024, 1, 6 * 1024 * 1024, 10 * 1024 * 1024, "5.00 MB / sec")]
Expand Down

0 comments on commit be8f9e2

Please sign in to comment.