Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Nov 6, 2023
1 parent d38cd85 commit 2868c3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit_test_001.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ unittest(test_constructor)
{
Kelvin2RGB tempColor;

tmpColor.begin();
tempColor.begin();

assertEqualFloat(0, tempColor.temperature(), 0.0001);
assertEqualFloat(0, tempColor.brightness(), 0.0001);
Expand All @@ -96,7 +96,7 @@ unittest(test_Tanner_Helland)
{
Kelvin2RGB tempColor;

tmpColor.begin();
tempColor.begin();

fprintf(stderr, "DLS_warmWhite\n");
tempColor.convert_TH(DLS_warmWhite, 100);
Expand All @@ -114,7 +114,7 @@ unittest(test_Neil_Bartlett)
{
Kelvin2RGB tempColor;

tmpColor.begin();
tempColor.begin();

fprintf(stderr, "DLS_warmWhite\n");
tempColor.convert_NB(DLS_warmWhite, 100);
Expand All @@ -132,7 +132,7 @@ unittest(test_colour_spaces)
{
Kelvin2RGB tempColor;

tmpColor.begin();
tempColor.begin();

fprintf(stderr, "test_colour_spaces\n");
tempColor.setRGB(0.50, 1.00, 0.75, 90); // brightness in %
Expand Down

0 comments on commit 2868c3a

Please sign in to comment.