All: Reformat according to new standard
This commit is contained in:
committed by
Kacper Donat
parent
eafd18dac0
commit
25c3ba7338
@@ -47,8 +47,10 @@ TEST_F(InputHintTest, LookupHintsSimpleState)
|
||||
std::list<InputHint> hintsSeekFirst = {firstHint};
|
||||
std::list<InputHint> hintsSeekSecond = {secondHint};
|
||||
|
||||
HintTable<State> table = {{.state = State::SeekFirst, .hints = hintsSeekFirst},
|
||||
{.state = State::SeekSecond, .hints = hintsSeekSecond}};
|
||||
HintTable<State> table = {
|
||||
{.state = State::SeekFirst, .hints = hintsSeekFirst},
|
||||
{.state = State::SeekSecond, .hints = hintsSeekSecond}
|
||||
};
|
||||
|
||||
// Act
|
||||
auto resultFirst = lookupHints(State::SeekFirst, table);
|
||||
@@ -71,7 +73,8 @@ TEST_F(InputHintTest, LookupHintsPairState)
|
||||
{.state = {State::SeekFirst, Method::FirstMethod}, .hints = firstFirstHints},
|
||||
{.state = {State::SeekFirst, Method::SecondMethod}, .hints = firstSecondHints},
|
||||
{.state = {State::SeekSecond, Method::FirstMethod}, .hints = secondFirstHints},
|
||||
{.state = {State::SeekSecond, Method::SecondMethod}, .hints = secondSecondHints}};
|
||||
{.state = {State::SeekSecond, Method::SecondMethod}, .hints = secondSecondHints}
|
||||
};
|
||||
|
||||
// Act
|
||||
auto resultFirstFirst = lookupHints({State::SeekFirst, Method::FirstMethod}, table);
|
||||
|
||||
Reference in New Issue
Block a user