faster test

This commit is contained in:
nora 2021-05-28 14:59:00 +02:00 committed by GitHub
parent 02afd00fd3
commit 44b41c3226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ class InterpreterTest {
@Test
void gotoBack() {
String program = "100000000 &i \n" +
String program = "10000000 &i \n" +
":start \n" +
"@i nout '\n' out \n" +
"@i 1 - &i \n" +
@ -192,4 +192,4 @@ class InterpreterTest {
List<Token> tokens = new Lexer().lex(program.toCharArray());
return interpreter.run(tokens);
}
}
}