Skip to content

Commit

Permalink
Merge pull request #6318 from brave/ie_fix_build
Browse files Browse the repository at this point in the history
10907: Fix broken unittests.
  • Loading branch information
iefremov authored Aug 3, 2020
2 parents 137588e + 471769d commit 0850b97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CosmeticResourceMergeTest : public testing::Test {
base::JSONReader::Read(expected);
ASSERT_TRUE(expected_val);

MergeResourcesInto(&*a_val, &*b_val, force_hide);
MergeResourcesInto(std::move(b_val.value()), &*a_val, force_hide);

ASSERT_EQ(*a_val, *expected_val);
}
Expand Down

0 comments on commit 0850b97

Please sign in to comment.