@@ -145,22 +145,21 @@ class CMDTests {
145145
146146 val setupMain = SetupMain ()
147147 setupMain.projectRoot = testproject
148- val code = catchExit { setupMain.doMain(arrayOf(TEST )) }
149- Assert .assertEquals(code, 0 , " grill test should succeed on WurstStdlib2" )
148+ val code = catchExit { setupMain.doMain(arrayOf(TEST , " --noPJass " )) }
149+ Assert .assertEquals(code, 0 , " grill test --noPJass should succeed on WurstStdlib2" )
150150 Assert .assertFalse(Files .exists(cwd.resolve(" compiled.j.txt" )), " grill test must not emit compiled.j.txt in the caller root" )
151151 Assert .assertFalse(Files .exists(cwd.resolve(" temp" ).resolve(" output.j" )), " grill test must not emit output.j in caller temp/" )
152152 Assert .assertTrue(Files .exists(testproject.resolve(" _build/grill/output.j" )), " compiler output should be emitted under _build/grill" )
153- Assert .assertTrue(Files .exists(testproject.resolve(" _build/grill/compiled.j.txt" )), " compiler debug output should stay under _build/grill" )
154153 }
155154
156155 @Test(priority = 3 )
157156 fun testBranchPull () {
158- val testproject = Files .createTempDirectory(" wurst-ptr -test" )
159- DependencyManager .cloneRepo(" https://github.com/wurstscript/WurstStdlib2:ptr " , testproject)
157+ val testproject = Files .createTempDirectory(" wurst-branch -test" )
158+ DependencyManager .cloneRepo(" https://github.com/wurstscript/WurstStdlib2:master " , testproject)
160159
161160 Assert .assertTrue(Files .exists(testproject))
162161 FileRepository (testproject.resolve(" .git" ).toFile()).use { repository ->
163- Assert .assertEquals(repository.branch, " ptr " )
162+ Assert .assertEquals(repository.branch, " master " )
164163
165164 }
166165 }
0 commit comments