Skip to content

Commit 7e929e3

Browse files
committed
Fixed test failure
1 parent c7096c7 commit 7e929e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/microsoft/sqlserver/jdbc/SQLServerDriverTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public void testAppNameWithSpecifiedApplicationName() throws SQLException {
242242
Statement stmt = conn.createStatement();
243243
ResultSet rs = stmt.executeQuery("SELECT app_name()")) {
244244
if (rs.next()) {
245-
assertEquals(SQLServerDriver.constructedAppName, rs.getString(1));
245+
assertEquals("0123456789012345678901234567890123456789012345678901234567890123456789012345678901234589012345678901234567890123456789012345678", rs.getString(1));
246246
}
247247
} catch (SQLException e) {
248248
fail(e.getMessage());

0 commit comments

Comments
 (0)