File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
metafacture-flux/src/test/java/org/metafacture/flux Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public void setup() {
54
54
@ Test
55
55
public void shouldAllowEmptyCommentInLastLineOfFile ()
56
56
throws RecognitionException , IOException {
57
- final String script = "\" test\" |write( \" stdout \" ) ; //" ;
57
+ final String script = "\" test\" |print ; //" ;
58
58
59
59
FluxCompiler .compile (createInputStream (script ), emptyMap ());
60
60
@@ -65,7 +65,7 @@ public void shouldAllowEmptyCommentInLastLineOfFile()
65
65
@ Test
66
66
public void shouldAllowEmptyCommentInFile ()
67
67
throws RecognitionException , IOException {
68
- final String script = "\" test\" |write( \" stdout \" ) ; //\n " ;
68
+ final String script = "\" test\" |print ; //\n " ;
69
69
70
70
FluxCompiler .compile (createInputStream (script ), emptyMap ());
71
71
@@ -78,7 +78,7 @@ public void shouldReplaceJavaEscapeSequences()
78
78
throws IOException , RecognitionException {
79
79
final String script =
80
80
"\" quot=\\ \" octal1=\\ 7 octal2=\\ 60 octal3=\\ 103 unicode=\\ u00f8 tab=[\\ t]\" " +
81
- "|write( \" stdout \" ) ;" ;
81
+ "|print ;" ;
82
82
83
83
final FluxProgramm program = FluxCompiler .compile (
84
84
createInputStream (script ), emptyMap ());
You can’t perform that action at this time.
0 commit comments