Skip to content

Commit

Permalink
Merge pull request #16 from FergusonAJ/testing
Browse files Browse the repository at this point in the history
Switch Data tests to aggregate initialization
  • Loading branch information
mercere99 authored Sep 29, 2023
2 parents 2f2d1be + 723b8ad commit 768397a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/core/Data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "core/AgentBase.hpp"

TEST_CASE("CellType", "[core]"){
cse491::CellType cell_type("name", "desc", '@');
cse491::CellType cell_type{"name", "desc", '@'};
CHECK(cell_type.name == "name");
CHECK(cell_type.desc == "desc");
CHECK(cell_type.symbol == '@');
Expand Down

0 comments on commit 768397a

Please sign in to comment.