Skip to content

Commit c451b20

Browse files
committed
chore: bump version to 1.0.0-alpha.1; fix stale test assertion
Secret scanning was enabled by default in the previous commit but the test assertion was not updated to match.
1 parent a198566 commit c451b20

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ ext {
6666

6767
allprojects {
6868
group = 'org.finos.gitproxy'
69-
version = '0.0.1-SNAPSHOT'
69+
version = '1.0.0-alpha.1'
7070

7171
repositories {
7272
mavenCentral()

git-proxy-java-server/src/test/java/org/finos/gitproxy/jetty/config/GitProxyConfigLoaderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ void deepMerge_localOverride_doesNotWipeOtherProviders() throws GestaltException
8787
void commitConfig_secretScanning_hasDefault() throws GestaltException {
8888
var ss = GitProxyConfigLoader.load().getCommit().getSecretScanning();
8989
assertNotNull(ss);
90-
// base config ships with secret scanning disabled
91-
assertFalse(ss.isEnabled());
90+
// base config ships with secret scanning enabled
91+
assertTrue(ss.isEnabled());
9292
}
9393

9494
// --- rules ---

0 commit comments

Comments
 (0)