Skip to content

Commit

Permalink
Fix | Fix assert in testDriverDM
Browse files Browse the repository at this point in the history
  • Loading branch information
ulvii committed Dec 6, 2019
1 parent 461f155 commit 4788fd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SQLServerDriverTest extends AbstractTest {
@Test
public void testDriverDM() throws SQLException, ClassNotFoundException {
Driver driver = DriverManager.getDriver(connectionString);
assertEquals(driver.getClass(), Class.forName(Constants.MSSQL_JDBC_PACKAGE + ".SQLServerDriver"),
assertEquals(Class.forName(Constants.MSSQL_JDBC_PACKAGE + ".SQLServerDriver"), driver.getClass(),
TestResource.getResource("R_parrentLoggerNameWrong"));
}

Expand Down

0 comments on commit 4788fd6

Please sign in to comment.