File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/java/com/redislabs/redisgraph/exceptions Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
77 <groupId >com.redislabs</groupId >
88 <artifactId >jredisgraph</artifactId >
9- <version >2.0.2 -SNAPSHOT</version >
9+ <version >2.0.3 -SNAPSHOT</version >
1010
1111 <name >JRedisGraph</name >
1212 <description >Official client for Redis-Graph</description >
Original file line number Diff line number Diff line change @@ -90,14 +90,14 @@ public void testContextSyntaxErrorReporting() {
9090
9191 @ Test
9292 public void testMissingParametersSyntaxErrorReporting (){
93- exceptionRule .expect (JRedisGraphCompileTimeException .class );
93+ exceptionRule .expect (JRedisGraphRunTimeException .class );
9494 exceptionRule .expectMessage ("Missing parameters" );
9595 api .query ("social" ,"RETURN $param" );
9696 }
9797
9898 @ Test
9999 public void testMissingParametersSyntaxErrorReporting2 (){
100- exceptionRule .expect (JRedisGraphCompileTimeException .class );
100+ exceptionRule .expect (JRedisGraphRunTimeException .class );
101101 exceptionRule .expectMessage ("Missing parameters" );
102102 api .query ("social" ,"RETURN $param" , new HashMap <>());
103103 }
You can’t perform that action at this time.
0 commit comments