Skip to content

Commit 6ddfa3a

Browse files
committed
Relax environment size minimum in ApposeUtilsTest
1 parent 737a87b commit 6ddfa3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/mastodon/mamut/util/appose/ApposeUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void testInstallDeleteExistsSize() throws IOException
5858
String numberPart = size.split( " " )[ 0 ]; // "123,4"
5959
String integerPart = numberPart.split( "[.,]" )[ 0 ]; // "123"
6060
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" );
61+
assertTrue( sizeInt >= 50 && sizeInt <= 499, "Environment size should be between 50 MB and 499 MB but was " + size + " MB" );
6262
ApposeUtils.deleteEnvironment( testEnvName, null );
6363
assertFalse( ApposeUtils.checkEnvironmentInstalled( testEnvName ) );
6464
}

0 commit comments

Comments
 (0)