Skip to content

Commit

Permalink
Use Fixed API
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Feb 5, 2019
1 parent 2c41407 commit 7801fa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Platform.Client.Tests/ItUserClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ public async Task FindUserLogs()
var userLogs = await _userClient.FindUserLogs(user);

Assert.IsTrue(userLogs.Any());
Assert.AreEqual(userLogs[0].Description, "User Created");
Assert.AreEqual(userLogs[0].UserId, user.Id);
Assert.IsTrue(userLogs[0].Time > now);
Assert.AreEqual(userLogs[userLogs.Count - 1].Description, "User Updated");
Assert.AreEqual(userLogs[userLogs.Count - 1].UserId, user.Id);
Assert.IsTrue(userLogs[userLogs.Count - 1].Time > now);
}

[Test]
Expand Down

0 comments on commit 7801fa0

Please sign in to comment.