Skip to content

Commit

Permalink
use hash equal
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangs18 committed Jan 13, 2024
1 parent 603423c commit 65d2757
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package us.kbase.test.auth2.lib.storage.mongo;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;

import static org.junit.Assert.*;
import static us.kbase.test.auth2.TestCommon.set;

import java.util.*;
Expand Down Expand Up @@ -189,7 +188,8 @@ public void indexesConfigApp() {
);
System.out.println("-------------------------");
display(expected);
assertThat("incorrect indexes", indexes, is(expected));
// assertThat("incorrect indexes", indexes, is(expected));
assertTrue("incorrect indexes", indexes.equals(expected));
}

@Test
Expand Down

0 comments on commit 65d2757

Please sign in to comment.