Skip to content

Commit fd1b082

Browse files
committed
Fix testMetaInf
1 parent 13c802c commit fd1b082

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

core/src/jarFileTest/java/org/testcontainers/JarFileShadingTest.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,15 @@ public void testPackages() throws Exception {
2121
@Test
2222
public void testMetaInf() throws Exception {
2323
assertThatFileList(root.resolve("META-INF"))
24-
.containsOnly("MANIFEST.MF", "services", "versions", "native-image");
24+
.containsOnly(
25+
"MANIFEST.MF",
26+
"services",
27+
"versions",
28+
"native-image",
29+
"thirdparty-LICENSE",
30+
"FastDoubleParser-NOTICE",
31+
"FastDoubleParser-LICENSE"
32+
);
2533
}
2634

2735
@Test

0 commit comments

Comments
 (0)