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 and Ananya2 committed Jan 10, 2025
1 parent 8d4f2c6 commit 3f98b61
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 3f98b61

Please sign in to comment.