Skip to content

Commit 68e4275

Browse files
committed
chore: make a couple of test classes public
Check if making a couple of test classes public fixes the weird native image build error.
1 parent d9994d4 commit 68e4275

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ITAbstractSpannerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public GenericConnection getConnection() {
6565
}
6666
}
6767

68-
protected interface ITConnection extends Connection {}
68+
public interface ITConnection extends Connection {}
6969

7070
private ITConnection createITConnection(ConnectionOptions options) {
7171
return new ITConnectionImpl(options);

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ITConnectionImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import com.google.cloud.spanner.connection.ITAbstractSpannerTest.ITConnection;
1919

2020
/** Implementation of {@link ITConnection} for Spanner generic (not JDBC) connections. */
21-
class ITConnectionImpl extends ConnectionImpl implements ITConnection {
21+
public class ITConnectionImpl extends ConnectionImpl implements ITConnection {
2222
ITConnectionImpl(ConnectionOptions options) {
2323
super(options);
2424
}

0 commit comments

Comments
 (0)