Skip to content

Commit 0b01af2

Browse files
committed
fix test
1 parent 9919f06 commit 0b01af2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/redirectionio_test_examples.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ mod generated_tests {
6565
let json_in = std::fs::read_to_string(format!("tests/test_examples/{}.in.json", name)).unwrap();
6666
let test_examples_input: TestExamplesInput = json_decode(&json_in).unwrap();
6767

68-
let test_examples = TestExamplesOutput::create_result(test_examples_input);
68+
let test_examples = TestExamplesOutput::create_result_without_project(test_examples_input);
6969

7070
let json_out_expected = std::fs::read_to_string(format!("tests/test_examples/{}.out.json", name)).unwrap();
7171
let json_out = json_encode(&test_examples).unwrap();

tests/templates/redirectionio_test_examples.rs.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod generated_tests {
1818
let json_in = std::fs::read_to_string(format!("tests/test_examples/{}.in.json", name)).unwrap();
1919
let test_examples_input: TestExamplesInput = json_decode(&json_in).unwrap();
2020

21-
let test_examples = TestExamplesOutput::create_result(test_examples_input);
21+
let test_examples = TestExamplesOutput::create_result_without_project(test_examples_input);
2222

2323
let json_out_expected = std::fs::read_to_string(format!("tests/test_examples/{}.out.json", name)).unwrap();
2424
let json_out = json_encode(&test_examples).unwrap();

0 commit comments

Comments
 (0)