We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28f82f commit 26c45e5Copy full SHA for 26c45e5
src/IdentityServer4/test/IdentityServer.UnitTests/Services/Default/NumericUserCodeServiceTests.cs
@@ -1,6 +1,6 @@
1
-using System.Threading.Tasks;
2
using FluentAssertions;
3
using IdentityServer4.Services;
+using System.Threading.Tasks;
4
using Xunit;
5
6
namespace IdentityServer.UnitTests.Services.Default
@@ -15,8 +15,8 @@ public async Task GenerateAsync_should_return_expected_code()
15
var userCode = await sut.GenerateAsync();
16
var userCodeInt = int.Parse(userCode);
17
18
- userCodeInt.Should().BeGreaterOrEqualTo(100000000);
19
- userCodeInt.Should().BeLessOrEqualTo(999999999);
+ userCodeInt.Should().BeGreaterThanOrEqualTo(100000000);
+ userCodeInt.Should().BeLessThanOrEqualTo(999999999);
20
}
21
22
0 commit comments