File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
main/resources/org/codehaus/plexus/archiver/jar
test/java/org/codehaus/plexus/archiver/jar Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 11Manifest-Version: 1.0
2- Archiver-Version: Plexus Archiver
3-
Original file line number Diff line number Diff line change @@ -191,13 +191,11 @@ public void testGetDefaultManifest()
191191 {
192192 java .util .jar .Manifest mf = Manifest .getDefaultManifest ();
193193 java .util .jar .Attributes mainAttributes = mf .getMainAttributes ();
194- assertEquals ( 3 , mainAttributes .size () );
194+ assertEquals ( 2 , mainAttributes .size () );
195195 assertTrue (
196196 mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Manifest-Version" ) ) );
197197 assertTrue (
198198 mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Created-By" ) ) );
199- assertTrue (
200- mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Archiver-Version" ) ) );
201199 }
202200
203201
You can’t perform that action at this time.
0 commit comments