We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 737a87b commit 6ddfa3aCopy full SHA for 6ddfa3a
1 file changed
src/test/java/org/mastodon/mamut/util/appose/ApposeUtilsTest.java
@@ -58,7 +58,7 @@ void testInstallDeleteExistsSize() throws IOException
58
String numberPart = size.split( " " )[ 0 ]; // "123,4"
59
String integerPart = numberPart.split( "[.,]" )[ 0 ]; // "123"
60
int sizeInt = Integer.parseInt( integerPart );
61
- assertTrue( sizeInt >= 100 && sizeInt <= 499, "Environment size should be between 100 MB and 499 MB but was " + size + " MB" );
+ assertTrue( sizeInt >= 50 && sizeInt <= 499, "Environment size should be between 50 MB and 499 MB but was " + size + " MB" );
62
ApposeUtils.deleteEnvironment( testEnvName, null );
63
assertFalse( ApposeUtils.checkEnvironmentInstalled( testEnvName ) );
64
}
0 commit comments