Skip to content

Commit 84e0651

Browse files
committed
Fix assertion order
1 parent 6e96321 commit 84e0651

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/test/java/com/maxmind/minfraud/WebServiceClientTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ public void testFullInsightsTransaction() throws Exception {
8080
assertTrue(
8181
"response.getIpAddress().getRepresentedCountry().isInEuropeanUnion() does not return true",
8282
response.getIpAddress().getRepresentedCountry().isInEuropeanUnion());
83-
assertEquals(response.getDevice().getLocalTime(),
84-
"2018-04-05T15:34:40-07:00");
83+
assertEquals("2018-04-05T15:34:40-07:00", response.getDevice().getLocalTime());
8584

8685
assertTrue(response.getCreditCard().isVirtual());
8786
}

0 commit comments

Comments
 (0)