This commit is contained in:
Looly 2023-06-29 18:03:51 +08:00
parent 77bd2d4336
commit c4373832b8

View File

@ -22,7 +22,7 @@ public class MetaUtilTest {
@Test
public void getTablesTest() {
final List<String> tables = MetaUtil.getTables(ds);
Assertions.assertEquals("user", tables.get(0));
Assertions.assertTrue(tables.contains("user"));
}
@Test