Skip to content

Commit b84cc51

Browse files
Corrected version #121
1 parent fb5d58b commit b84cc51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/cyclonedx/parsers/XmlParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public void testParsedObjects13Bom() throws Exception {
431431
public void test13PrereleasePropertyBom() throws Exception {
432432
final File file = new File(this.getClass().getResource("/1.3/valid-properties-1.3-prerelease.xml").getFile());
433433
final XmlParser parser = new XmlParser();
434-
final boolean valid = parser.isValid(file, CycloneDxSchema.Version.VERSION_12);
434+
final boolean valid = parser.isValid(file, CycloneDxSchema.Version.VERSION_13);
435435
assertFalse(valid);
436436
final Bom bom1 = parser.parse(file);
437437
Component c1 = bom1.getComponents().get(0);

0 commit comments

Comments
 (0)