Skip to content

Commit eac0084

Browse files
committed
#940 Run tests with enableProtocols not set by default
1 parent 3af2070 commit eac0084

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test.db.port=3050
2626
test.db.lc_ctype=NONE
2727
test.gds_type=PURE_JAVA
2828
test.use.firebird.autocommit=false
29-
test.enableProtocol=*
29+
test.enableProtocol=
3030

3131
# Publish properties
3232
releaseRepository=https\://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/

src/test/org/firebirdsql/common/FBTestProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public static String getProperty(String property, String defaultValue) {
9898
public static final String GDS_TYPE = getProperty("test.gds_type", "PURE_JAVA");
9999
public static final boolean USE_FIREBIRD_AUTOCOMMIT =
100100
Boolean.parseBoolean(getProperty("test.use_firebird_autocommit", "false"));
101-
public static final String ENABLE_PROTOCOL = trimToNull(getProperty("test.enableProtocol", "*"));
101+
public static final String ENABLE_PROTOCOL = trimToNull(getProperty("test.enableProtocol", ""));
102102
// Allows running native tests against Firebird 2.5 or older with a Firebird 3.0 or newer fbclient.
103103
private static final boolean NATIVE_LEGACY_AUTH_COMPAT =
104104
Boolean.parseBoolean(getProperty("test.native_legacy_auth_compat", "false"));

0 commit comments

Comments
 (0)