Skip to content

Commit

Permalink
Fixed test failure (#2574)
Browse files Browse the repository at this point in the history
  • Loading branch information
muskan124947 authored Jan 4, 2025
1 parent c7096c7 commit 5bb3353
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public void testAppNameWithSpecifiedApplicationName() throws SQLException {
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT app_name()")) {
if (rs.next()) {
assertEquals(SQLServerDriver.constructedAppName, rs.getString(1));
assertEquals("0123456789012345678901234567890123456789012345678901234567890123456789012345678901234589012345678901234567890123456789012345678", rs.getString(1));
}
} catch (SQLException e) {
fail(e.getMessage());
Expand Down

0 comments on commit 5bb3353

Please sign in to comment.