cbe tests: fix test on windows

"\n" -> std.cstr.line_sep
This commit is contained in:
jacob gw
2021-03-18 08:05:31 -04:00
committed by Veikka Tuominen
parent 5cbb642525
commit 7c6eb41619

View File

@@ -51,7 +51,7 @@ pub fn addCases(ctx: *TestContext) !void {
\\ _ = printf("Hello, %s!\n", "world");
\\ return 0;
\\}
, "Hello, world!\n");
, "Hello, world!" ++ std.cstr.line_sep);
}
{