Skip to content

Commit 6dedbe0

Browse files
committed
#940 Run tests with enableProtocols not set by default
1 parent 8a638a2 commit 6dedbe0

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
@@ -23,7 +23,7 @@ test.db.port=3050
2323
test.db.lc_ctype=NONE
2424
test.gds_type=PURE_JAVA
2525
test.use.firebird.autocommit=false
26-
test.enableProtocol=*
26+
test.enableProtocol=
2727

2828
# Publish properties
2929
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
@@ -101,7 +101,7 @@ public static String getProperty(String property, String defaultValue) {
101101
public static final String GDS_TYPE = getProperty("test.gds_type", "PURE_JAVA");
102102
public static final boolean USE_FIREBIRD_AUTOCOMMIT =
103103
Boolean.parseBoolean(getProperty("test.use_firebird_autocommit", "false"));
104-
public static final String ENABLE_PROTOCOL = trimToNull(getProperty("test.enableProtocol", "*"));
104+
public static final String ENABLE_PROTOCOL = trimToNull(getProperty("test.enableProtocol", ""));
105105
// Allows running native tests against Firebird 2.5 or older with a Firebird 3.0 or newer fbclient.
106106
private static final boolean NATIVE_LEGACY_AUTH_COMPAT =
107107
Boolean.parseBoolean(getProperty("test.native_legacy_auth_compat", "false"));

0 commit comments

Comments
 (0)