Skip to content

Commit

Permalink
Fix assertion on DeviceFlowStore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodall committed Sep 6, 2021
1 parent 4122838 commit c9f88ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public async Task Should_Find_Stored_Data(TestDatabase testDb)
foundDeviceFlowCodes.Should().NotBeNull();
var deserializedData = serializer.Deserialize<DeviceCode>(foundDeviceFlowCodes?.Data);

deserializedData.CreationTime.Should().BeCloseTo(data.CreationTime);
deserializedData.CreationTime.Should().Be(data.CreationTime);
deserializedData.ClientId.Should().Be(data.ClientId);
deserializedData.Lifetime.Should().Be(data.Lifetime);
}
Expand Down

0 comments on commit c9f88ec

Please sign in to comment.