Skip to content

Commit

Permalink
Fix for testBug11781.
Browse files Browse the repository at this point in the history
  • Loading branch information
soklakov committed Jul 21, 2017
1 parent d067cae commit 9a61f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testsuite/regression/MetaDataRegressionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ public void testBug11781() throws Exception {

String catalog = this.conn.getCatalog();

assertEquals("comment; APPFK(`C1`) REFER `" + catalog + "`/ `app tab` (`C1`)", this.rs.getString(3));
assertEquals(("comment; APPFK(`C1`) REFER `" + catalog + "`/ `app tab` (`C1`)").toUpperCase(), this.rs.getString(3).toUpperCase());

this.rs.close();

Expand Down

0 comments on commit 9a61f34

Please sign in to comment.