fix: Subclass Sandbox tests fixed and re-enabled (#2860) (#2921)

Co-authored-by: Yugantar Arya <yugantararya@Yugantars-MacBook-Air.local>
This commit is contained in:
dev-yugantar
2024-04-17 23:29:55 +05:30
committed by GitHub
parent bcf88a61fa
commit fe6841e8c6
2 changed files with 3 additions and 7 deletions
@@ -28,13 +28,11 @@ import static com.github.stefanbirkner.systemlambda.SystemLambda.tapSystemOutNor
import static org.junit.jupiter.api.Assertions.assertEquals;
import com.github.stefanbirkner.systemlambda.Statement;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* SkyLaunch unit tests.
*/
@Disabled
class SkyLaunchTest {
@Test
@@ -86,6 +84,6 @@ class SkyLaunchTest {
}
private String getLogContent(String log) {
return log.split("-")[1].trim();
return log.split("--")[1].trim();
}
}