Skip to content

Commit

Permalink
Construction of struct 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianFeldmann committed Jan 17, 2025
1 parent 96cfeef commit c377ba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions YUViewUnitTest/statistics/StatisticsTypeBuilderTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ TEST(StatisticsTypeBuilderTest, SetVectorDataDefaultValues)

TEST(StatisticsTypeBuilderTest, SetVectorDataCustomValues)
{
const LineDrawStyle lineDrawStyle(Color(255, 0, 0), 2, Pattern::DashDot);
const LineDrawStyle lineDrawStyle({Color(255, 0, 0), 2, Pattern::DashDot});

const auto statisticsType = StatisticsTypeBuilder()
.withVectorDataOptions({
Expand Down Expand Up @@ -147,7 +147,7 @@ TEST(StatisticsTypeBuilderTest, SetGridOptionsDefaultValues)

TEST(StatisticsTypeBuilderTest, SetGridOptionsCustomValues)
{
const LineDrawStyle lineDrawStyle(Color(123, 44, 99), 5, Pattern::DashDot);
const LineDrawStyle lineDrawStyle({Color(123, 44, 99), 5, Pattern::DashDot});

const auto statisticsType =
StatisticsTypeBuilder()
Expand Down

0 comments on commit c377ba6

Please sign in to comment.