We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e002c2 + 32d2baa commit c4d5fc9Copy full SHA for c4d5fc9
driver/src/test/java/org/neo4j/driver/v1/tck/DriverComplianceSteps.java
@@ -141,7 +141,9 @@ public void the_driver_asks_the_server_to_echo_this_map_back() throws Throwable
141
@Given( "^a list containing$" )
142
public static void a_list_containing( List<String> table ) throws Throwable
143
{
144
- List<String> content = table.subList( 1, table.size() - 1 );
+ List<String> content = table.subList( 1, table.size() );
145
+ assertThat( content.size(), equalTo( table.size() - 1 ) );
146
+
147
for ( String value : content )
148
149
listOfObjects.add( getJavaValueIntAsLong( value ) );
0 commit comments