Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 736f9ed

Browse files
committed
fix: failing test because of return Integer instead of primitive int
1 parent 871a9f4 commit 736f9ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google-cloud-bigquery-jdbc/src/test/java/com/google/cloud/bigquery/jdbc/it/ITBigQueryJDBCTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ public void testDataSourceOAuthPvtKeyPath() throws SQLException, IOException {
15081508
ds.setURL("jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443;");
15091509
ds.setOAuthType(0);
15101510
ds.setOAuthPvtKeyPath(tempFile.toPath().toString());
1511-
assertEquals(0, ds.getOAuthType());
1511+
assertEquals(0, ds.getOAuthType().intValue());
15121512
assertEquals(tempFile.toPath().toString(), ds.getOAuthPvtKeyPath());
15131513
}
15141514

0 commit comments

Comments
 (0)