Skip to content

Commit

Permalink
adding m
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jan 18, 2024
1 parent 9ece656 commit 238a02c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/full_configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
{
"name": "C"
},
{
"name": "M"
},
{
"name": "H2O2",
"HLC(298K) [mol m-3 Pa-1]": 1.011596348,
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_json_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ TEST(JsonParser, ParsesFullConfiguration)
auto [status, mechanism] = parser.Parse(std::string("examples/full_configuration.json"));
EXPECT_EQ(status, ConfigParseStatus::Success);
EXPECT_EQ(mechanism.name, "Full Configuration");
EXPECT_EQ(mechanism.species.size(), 10);
EXPECT_EQ(mechanism.species.size(), 11);
EXPECT_EQ(mechanism.reactions.arrhenius.size(), 1);
EXPECT_EQ(mechanism.reactions.troe.size(), 1);
}
Expand Down

0 comments on commit 238a02c

Please sign in to comment.