File tree 2 files changed +1
-5
lines changed
main/resources/org/codehaus/plexus/archiver/jar
test/java/org/codehaus/plexus/archiver/jar
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
Manifest-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()
191
191
{
192
192
java .util .jar .Manifest mf = Manifest .getDefaultManifest ();
193
193
java .util .jar .Attributes mainAttributes = mf .getMainAttributes ();
194
- assertEquals ( 3 , mainAttributes .size () );
194
+ assertEquals ( 2 , mainAttributes .size () );
195
195
assertTrue (
196
196
mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Manifest-Version" ) ) );
197
197
assertTrue (
198
198
mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Created-By" ) ) );
199
- assertTrue (
200
- mainAttributes .containsKey ( new java .util .jar .Attributes .Name ( "Archiver-Version" ) ) );
201
199
}
202
200
203
201
You can’t perform that action at this time.
0 commit comments