Skip to content

Commit 787ca57

Browse files
authored
replace myersDiffbyLinebyChar with just diff
replace myersDiffbyLinebyChar with just diff
2 parents 781f57d + 677c51b commit 787ca57

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

examples/01_simple_python/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{
1717
// Grade by "diffing" the student output with an
1818
// instructor-provided file.
19-
"method" : "myersDiffbyLinebyChar",
19+
"method" : "diff",
2020
// The student's output. Corresponds to the position
2121
// of a command in the "command" list above: since
2222
// "python *.py" is the first command, it's output

examples/02_simple_cpp/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"points" : 15,
2020
"validation" : [
2121
{
22-
"method" : "myersDiffbyLinebyChar",
22+
"method" : "diff",
2323
"actual_file" : "STDOUT.txt",
2424
"description" : "Program Output",
2525
"expected_file" : "test1_output.txt"

examples/03_multipart/config/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"points" : 3,
1414
"validation" : [
1515
{
16-
"method" : "myersDiffbyLinebyChar",
16+
"method" : "diff",
1717
"actual_file" : "STDOUT.txt",
1818
"description" : "Program Output",
1919
"expected_file" : "part1_sol.txt"
@@ -26,7 +26,7 @@
2626
"points" : 4,
2727
"validation" : [
2828
{
29-
"method" : "myersDiffbyLinebyChar",
29+
"method" : "diff",
3030
"actual_file" : "STDOUT.txt",
3131
"description" : "Program Output",
3232
"expected_file" : "part2_sol.txt"
@@ -39,7 +39,7 @@
3939
"points" : 3,
4040
"validation" : [
4141
{
42-
"method" : "myersDiffbyLinebyChar",
42+
"method" : "diff",
4343
"actual_file" : "STDOUT.txt",
4444
"description" : "Program Output",
4545
"expected_file" : "part3_sol.txt"

examples/04_python_static_analysis/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"validation" : [
1515
// First, ensure that the student received the correct answer.
1616
{
17-
"method" : "myersDiffbyLinebyChar",
17+
"method" : "diff",
1818
"actual_file" : "STDOUT_0.txt",
1919
"description" : "Program Output",
2020
"expected_file" : "output.txt"

examples/11_resources/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"points" : 4,
1919
"validation" : [
2020
{
21-
"method" : "myersDiffbyLinebyChar",
21+
"method" : "diff",
2222
"actual_file" : "STDOUT.txt",
2323
"description" : "Program Output",
2424
"expected_file" : "simple_out.txt"

examples/13_cmake_compilation/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"validation" :
2222
[
2323
{
24-
"method" : "myersDiffbyLinebyChar",
24+
"method" : "diff",
2525
"actual_file" : "STDOUT.txt",
2626
"description" : "Program Output",
2727
"expected_file" : "output.txt"

0 commit comments

Comments
 (0)