Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearkatie committed Jun 12, 2024
1 parent 9885a35 commit ee40b8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Since last release
======================

**Added:**
* Added package parameter to storage (#603, #612)

**Changed:**

* Rely on ``python3`` in environment instead of ``python`` (#602)
* Link against ``libxml++`` imported target in CMake instead of ``LIBXMLXX_LIBRARIES`` (#608)
* Cleaned up ``using`` declarations throughout archetypes (#610)
* Added package parameter to storage (#603)

**Fixed:**

Expand Down
6 changes: 3 additions & 3 deletions src/storage_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1036,9 +1036,9 @@ TEST_F(StorageTest, PackageMerge) {
res_conds.push_back(cyclus::Cond("PackageName", "==", p->name()));
cyclus::QueryResult qr_res = sim.db().Query("Resources", &res_conds);
// Combines two 0.5 mass resources to make packages with mass 1
EXPECT_EQ(qr_res.rows.size(), 2);
EXPECT_EQ(qr_res.GetVal<double>("Quantity", 0), 1);
EXPECT_EQ(qr_res.GetVal<double>("Quantity", 1), 1);
EXPECT_EQ(2, qr_res.rows.size());
EXPECT_EQ(1, qr_res.GetVal<double>("Quantity", 0));
EXPECT_EQ(1, qr_res.GetVal<double>("Quantity", 1));
}

} // namespace cycamore
Expand Down

0 comments on commit ee40b8c

Please sign in to comment.