Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Aug 29, 2024
1 parent fd444f5 commit 6c8df1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testoscar/Graphics/TestRgba.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ TEST(Rgba, can_be_decomposed_into_mutable_component_parts)
ASSERT_EQ(rgba.r, 2.0f);
ASSERT_EQ(rgba.g, 4.0f);
ASSERT_EQ(rgba.b, 6.0f);
ASSERT_EQ(rgba.a, 0.25f);
ASSERT_EQ(rgba.a, 1.0f);
}

TEST(Rgba, value_ptr_works_for_float_type)
Expand Down

0 comments on commit 6c8df1d

Please sign in to comment.