File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
driver-core/src/test/java/com/datastax/driver/core/querybuilder Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -875,7 +875,7 @@ public void should_support_group_by() throws Exception {
875
875
.groupBy ("a" , "clustering1" ));
876
876
fail ("Expecting IQE" );
877
877
} catch (InvalidQueryException e ) {
878
- assertThat (e .getMessage ()).isEqualTo ("Undefined column name clustering1" );
878
+ assertThat (e .getMessage ()).startsWith ("Undefined column name clustering1" );
879
879
}
880
880
881
881
try {
@@ -890,7 +890,7 @@ public void should_support_group_by() throws Exception {
890
890
.groupBy ("a" , "b" , "z" ));
891
891
fail ("Expecting IQE" );
892
892
} catch (InvalidQueryException e ) {
893
- assertThat (e .getMessage ()).isEqualTo ("Undefined column name z" );
893
+ assertThat (e .getMessage ()).startsWith ("Undefined column name z" );
894
894
}
895
895
896
896
// Test with composite partition key
You can’t perform that action at this time.
0 commit comments