Local of Known Non Null

This commit is contained in:
Vandana B T 2021-12-09 15:12:09 +05:30
parent ef3f78f497
commit 976c696e55
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ public class OrcTester
private static void assertColumnValueEquals(Type type, Object actual, Object expected)
{
if (actual == null) {
assertEquals(actual, expected);
assertNull(expected);
return;
}
String baseType = type.getTypeSignature().getBase();