Skip to content

Commit 21950a1

Browse files
committed
Update helper expectation
1 parent d84d3a2 commit 21950a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/utility.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ void compare_to_stored_output(const std::string &output,
384384
expected_output_file.close();
385385
std::string expected_output = ss.str();
386386

387-
EXPECT_TRUE(output == expected_output)
387+
EXPECT_EQ(output, expected_output)
388388
<< "Output does not match expected output. Expected:\n--------\n"
389389
<< expected_output << "\n--------\nActual:\n--------\n"
390390
<< output

0 commit comments

Comments
 (0)