diff --git a/src/asl/parser_test.go b/src/asl/parser_test.go index 6c7e1c0..3a90ca9 100644 --- a/src/asl/parser_test.go +++ b/src/asl/parser_test.go @@ -8,42 +8,42 @@ import ( func TestParserDeclaration(t *testing.T) { got := getCompiled(t, "test/tokenizer_var.asl") - want := "x = 1;\narray = [1,2,3];\n" + want := "x = 1;\r\narray = [1,2,3];\r\n" equal(t, got, want) } func TestParserAssignment(t *testing.T) { got := getCompiled(t, "test/parser_assignment.asl") - want := "x = 1;\n" + want := "x = 1;\r\n" equal(t, got, want) } func TestParserIf(t *testing.T) { got := getCompiled(t, "test/tokenizer_if.asl") - want := "if (a