Skip to content

Commit

Permalink
more test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Dec 3, 2024
1 parent decae65 commit d1156d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/com/firebolt/FireboltDriverTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void jdbcCompliant() {
void version() {
FireboltDriver fireboltDriver = new FireboltDriver();
assertEquals(3, fireboltDriver.getMajorVersion());
assertEquals(3, fireboltDriver.getMinorVersion());
assertEquals(4, fireboltDriver.getMinorVersion());
}

@ParameterizedTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ void shouldGetDriverMajorVersion() {

@Test
void shouldGetDriverMinorVersion() {
assertEquals(3, fireboltDatabaseMetadata.getDriverMinorVersion());
assertEquals(4, fireboltDatabaseMetadata.getDriverMinorVersion());
}

@Test
Expand Down

0 comments on commit d1156d1

Please sign in to comment.