Skip to content

Commit

Permalink
[C++options] Fix Ubuntu test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob-IT committed Apr 7, 2022
1 parent 8337356 commit ae220b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgnucash/app-utils/test/gtest-gnc-optiondb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ TEST_F(GncOptionDBTest, test_register_report_placement_option)
auto option{m_db->find_option("foo", "bar")};
option->set_value(rp);
auto value{option->get_value<GncOptionReportPlacementVec>()};
EXPECT_EQ(value.size(), 1);
EXPECT_EQ(value.size(), 1u);
auto [v_id, v_wide, v_height] = value.at(0);
EXPECT_EQ(report_id, v_id);
}
Expand Down

0 comments on commit ae220b8

Please sign in to comment.