jetty-9 fix wrong case in PluginManagerTest

This commit is contained in:
Thomas Becker 2012-08-29 11:49:01 +02:00
parent 1191f5ab5d
commit c3abbe5ecb
1 changed files with 4 additions and 4 deletions

View File

@ -89,11 +89,11 @@ public class PluginManagerTest {
_pluginManager.installPlugin(pluginName);
File someJar = new File(_tmpDir + File.separator + "lib"
+ File.separator + "someJar.jar");
assertThat("someJar.jar does not exist", someJar.exists(), is(true));
+ File.separator + "somejar.jar");
assertThat("somejar.jar does not exist", someJar.exists(), is(true));
File someOtherJar = new File(_tmpDir + File.separator + "lib"
+ File.separator + "someOtherJar.jar");
assertThat("someOtherJar.jar does not exist", someOtherJar.exists(),
+ File.separator + "someotherjar.jar");
assertThat("someotherjar.jar does not exist", someOtherJar.exists(),
is(true));
}