Skip to content

Commit 4213647

Browse files
committed
Correct unit test
1 parent e48814d commit 4213647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/FoxIDs.UnitTests/Logic/AccessTokenSessionLogicTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public async Task ListSessionsAsync_UsesFilter()
155155
.ReturnsAsync(((IReadOnlyCollection<ActiveSessionTtl>)new List<ActiveSessionTtl>(), "token1"));
156156

157157
var sessionId = CreateSessionId("sid123");
158-
await logic.ListSessionsAsync("[email protected]", "sub1", "login", "app1", sessionId);
158+
await logic.ListSessionsAsync("[email protected]", "sub1", sessionId, "app1", "login");
159159

160160
Assert.NotNull(filter);
161161
var matches = filter.Compile()(new ActiveSessionTtl

0 commit comments

Comments
 (0)