File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
integration-tests/src/test/java/com/datastax/oss/driver/core/cql Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -522,13 +522,8 @@ public void prepared_stmt_metadata_update_loopholes_test(
522522 }
523523
524524 row = session .execute (stmtUDTTableWCS .bind (1 )).one ();
525- try {
526- assertThat (row .getUdtValue (1 ).size ()).isEqualTo (expectedColumnCount );
527- // if isPreparedStatementInvalidationBroken is true it should throw exception
528- assertThat (isPreparedStatementInvalidationBroken ).isFalse ();
529- } catch (java .lang .IllegalArgumentException e ) {
530- assertThat (isPreparedStatementInvalidationBroken ).isTrue ();
531- }
525+
526+ assertThat (row .getUdtValue (1 ).size ()).isEqualTo (expectedColumnCount );
532527 assertThat (row .getColumnDefinitions ().size ()).isEqualTo (2 );
533528 assertThat (getUDTColumnCount (row .getColumnDefinitions ().get (1 )))
534529 .isEqualTo (expectedColumnCount );
You can’t perform that action at this time.
0 commit comments