Skip to content

Commit 719f071

Browse files
cyberkaidaCopilot
andauthored
Update src/test.slow/java/reva/plugin/ConfigManagerSecurityTest.java
Co-authored-by: Copilot <[email protected]>
1 parent dd48678 commit 719f071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test.slow/java/reva/plugin/ConfigManagerSecurityTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void testApiKeyGenerationFormat() {
9292
String[] parts = apiKey.split("-", 2);
9393

9494
assertEquals("API key should start with 'ReVa'", "ReVa", parts[0]);
95-
assertTrue("API key should have UUID part", parts.length == 2);
95+
assertEquals("API key should have UUID part", 2, parts.length);
9696
assertTrue("UUID part should be non-empty", parts[1].length() > 0);
9797
// UUID with dashes is typically 36 characters, but let's be more lenient
9898
assertTrue("UUID part should be reasonable length", parts[1].length() >= 10);

0 commit comments

Comments
 (0)