Skip to content

Commit

Permalink
Make format happy
Browse files Browse the repository at this point in the history
  • Loading branch information
iomaganaris committed Jan 11, 2024
1 parent 416c276 commit 24e3179
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/visitor/need_setdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ SCENARIO("Check whether PROCEDURE and FUNCTION need setdata call", "[visitor][ne
auto ast = run_NeedSetData_visitor(input_nmodl);
auto symtab = ast->get_symbol_table();
THEN("need_setdata property is added to needed FUNC and PROC") {
auto need_setdata_funcs = symtab->get_variables_with_properties(NmodlType::need_setdata);
auto need_setdata_funcs = symtab->get_variables_with_properties(
NmodlType::need_setdata);
REQUIRE(need_setdata_funcs.size() == 2);
const auto a = symtab->lookup("a");
REQUIRE(a->has_any_property(NmodlType::need_setdata));
Expand Down

0 comments on commit 24e3179

Please sign in to comment.