Skip to content

Commit 03f199d

Browse files
committed
Add EOL chars
1 parent d196532 commit 03f199d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

example_problems/hello/submissions/run_time_error/test-chroot-escape.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ def is_chroot():
2222

2323
# If we get here we failed
2424
print("Hello world!")
25-

example_problems/hello/submissions/run_time_error/test-exitcode-2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
@EXPECTED_RESULTS@: RUN-ERROR
33
'''
44

5-
exit(1)
5+
exit(1)

example_problems/hello/submissions/run_time_error/test-exitcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
@EXPECTED_RESULTS@: RUN-ERROR
33
'''
44

5-
raise Exception("Expected failure")
5+
raise Exception("Expected failure")

example_problems/hello/submissions/run_time_error/test-memsize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
while True:
77
some_str = ' ' * bytearray(512000000)
8-
storage.append(some_str)
8+
storage.append(some_str)

0 commit comments

Comments
 (0)