Skip to content

Commit e6e384f

Browse files
committed
[TESTS] fixed tc_71_2 and tc_71_15 to account for updates executor correctly
1 parent 4ccbb21 commit e6e384f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/tc_71_2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
char check_output_6[] =
11-
" File \"/home/runner/work/runtime/runtime/tests/student_code/executor_sanity.py\", line 25, in teleop_main\n"
11+
" File \"/home/runner/work/runtime/runtime/tests/student_code/executor_sanity.py\", line 19, in teleop_main\n"
1212
" oops = 1 / 0\n"
1313
" ~~^~~\n"
1414
"ZeroDivisionError: division by zero\n";

tests/student_code/sanity_write.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def constant_write():
1515
Robot.set_value(GeneralTestDevice, "RED_INT", int_val)
1616
Robot.set_value(GeneralTestDevice, "ORANGE_FLOAT", float_val)
1717
Robot.set_value(GeneralTestDevice, "YELLOW_BOOL", bool_val)
18-
int_val += 2;
18+
int_val += 2
1919
float_val += 3.14
2020
bool_val = not bool_val
2121

0 commit comments

Comments
 (0)