Skip to content

Commit c454c1c

Browse files
author
CNE Pierre FICHEPOIL
committed
fixed compilation error
1 parent 99aa587 commit c454c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/src/test/java/com/arcadedb/query/opencypher/functions/OpenCypherAggregatingFunctionsComprehensiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void avgNull() {
9696
final ResultSet result = database.command("opencypher",
9797
"UNWIND [null, null] AS val RETURN avg(val) AS result");
9898
Assertions.assertThat(result.hasNext() != false).isTrue();
99-
Assertions.assertThat(result.next().getProperty("result")).isNull();
99+
Assertions.assertThat(result.next().getProperty("result") == null).isTrue();
100100
}
101101

102102
// ==================== collect() Tests ====================

0 commit comments

Comments
 (0)