Skip to content

Commit d62de2d

Browse files
committed
fix formatting
1 parent d325e32 commit d62de2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/NRedisStack.Tests/CustomAssertions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ public static class CustomAssertions
77
// Generic method to assert that 'actual' is greater than 'expected'
88
public static void GreaterThan<T>(T actual, T expected) where T : IComparable<T>
99
{
10-
Assert.True(actual.CompareTo(expected) > 0,
10+
Assert.True(actual.CompareTo(expected) > 0,
1111
$"Failure: Expected value to be greater than {expected}, but found {actual}.");
1212
}
1313

1414
// Generic method to assert that 'actual' is less than 'expected'
1515
public static void LessThan<T>(T actual, T expected) where T : IComparable<T>
1616
{
17-
Assert.True(actual.CompareTo(expected) < 0,
17+
Assert.True(actual.CompareTo(expected) < 0,
1818
$"Failure: Expected value to be less than {expected}, but found {actual}.");
1919
}
2020
}

0 commit comments

Comments
 (0)