test: fixed test

This commit is contained in:
Michael Yang 2025-07-25 09:52:51 +08:00
parent bf973f9f06
commit f786fd64b5

View File

@ -259,7 +259,7 @@ public class DynamicConditionTest {
@Test
public void testCastFunction1() {
QueryCondition condition = QueryCondition.create(new QueryColumn("id"), SqlOperator.IN, new Object[]{null});
Assert.assertSame(condition, getConditionCaster().apply(condition));
Assert.assertNotSame(condition, getConditionCaster().apply(condition));
}
@Test