We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7a49e commit 3b1b577Copy full SHA for 3b1b577
sigstore-java/src/test/java/dev/sigstore/tuf/SigstoreTufClientTest.java
@@ -49,16 +49,15 @@ public void testUpdate_publicGoodHasTrustedRootJson() throws Exception {
49
}
50
51
@Test
52
- public void testUpdate_publicGoodNoSigningConfigV02() throws Exception {
+ public void testUpdate_publicGoodHasSigningConfigV02() throws Exception {
53
var client =
54
SigstoreTufClient.builder()
55
.usePublicGoodInstance()
56
.tufCacheLocation(localStorePath)
57
.build();
58
client.forceUpdate();
59
60
- // TODO: change this when we publish new signing config to public good
61
- Assertions.assertNull(client.getSigstoreSigningConfig());
+ assertSigningConfigValid(client.getSigstoreSigningConfig());
62
63
64
0 commit comments