Skip to content

Commit

Permalink
fix code wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliorivas committed Mar 11, 2024
1 parent cafa272 commit 3a4948a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/test_interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ TEST_SUITE("execute_request")
std::string inspect_result = "https://en.cppreference.com/w/cpp/container/vector";
nl::json user_expressions = nl::json::object();

nl::json result = interpreter.execute_request(code, false, false, user_expressions, false);
nl::json result = interpreter.execute_request(
code,
false,
false,
user_expressions,
false
);

REQUIRE(result["payload"][0]["data"]["text/plain"] == inspect_result);
REQUIRE(result["user_expressions"] == nl::json::object());
Expand Down

0 comments on commit 3a4948a

Please sign in to comment.