Skip to content

Commit

Permalink
Fix astyle regression
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhilkinSerg authored Feb 14, 2020
1 parent 6c50a8c commit 1badc5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/iteminfo_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ TEST_CASE( "item description and physical attributes", "[item][iteminfo]" )
{
iteminfo_query q( { iteminfo_parts::DESCRIPTION, iteminfo_parts::BASE_CATEGORY,
iteminfo_parts::BASE_PRICE, iteminfo_parts::BASE_VOLUME,
iteminfo_parts::BASE_WEIGHT, iteminfo_parts::BASE_MATERIAL } );
iteminfo_parts::BASE_WEIGHT, iteminfo_parts::BASE_MATERIAL
} );
iteminfo_test(
item( "jug_plastic" ), q,
"A standard plastic jug used for milk and household cleaning chemicals.\n"
Expand All @@ -39,7 +40,8 @@ TEST_CASE( "item description and physical attributes", "[item][iteminfo]" )
TEST_CASE( "weapon attack ratings and moves", "[item][iteminfo]" )
{
iteminfo_query q( { iteminfo_parts::BASE_DAMAGE, iteminfo_parts::BASE_TOHIT,
iteminfo_parts::BASE_MOVES } );
iteminfo_parts::BASE_MOVES
} );

iteminfo_test(
item( "halligan" ), q,
Expand Down

0 comments on commit 1badc5e

Please sign in to comment.