Skip to content

Commit

Permalink
Fixed scenario names
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Apr 15, 2024
1 parent 4f3e8a4 commit 9d4efd0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/tools/std20/algorithm/test/find.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//using namespace njoy::tools;
namespace std20 = nano;

SCENARIO( "equal" ) {
SCENARIO( "find" ) {

int a[] = { 1, 2, 3 };

Expand Down
2 changes: 1 addition & 1 deletion src/tools/std20/algorithm/test/min.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ struct Foo {
int i;
};

SCENARIO( "equal" ) {
SCENARIO( "min" ) {

int a[] = { 1, 2, 3 };
std::vector< int > v = { 1, 2, 3 };
Expand Down
2 changes: 1 addition & 1 deletion src/tools/std20/algorithm/test/mismatch.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//using namespace njoy::tools;
namespace std20 = nano;

SCENARIO( "equal" ) {
SCENARIO( "mismatch" ) {

int a[] = { 1, 2, 3, 4, 5, 6, 7 };
int b[] = { 1, 2, 3, 8, 9 };
Expand Down
2 changes: 1 addition & 1 deletion src/tools/std20/functional/test/identity.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//using namespace njoy::tools;
namespace std20 = nano;

SCENARIO( "invoke" ) {
SCENARIO( "identity" ) {

CHECK( std20::identity{}( 10 ) == 10 );
} // SCENARIO
2 changes: 1 addition & 1 deletion src/tools/std20/ranges/access/test/cbegin.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace std20 = nano;
// test code
struct Foo {};

SCENARIO( "ccbegin" ) {
SCENARIO( "cbegin" ) {

int a[2] = {};
CHECK( std20::same_as< decltype( std20::ranges::cbegin( a )), const int* > );
Expand Down
2 changes: 1 addition & 1 deletion src/tools/std20/views/test/counted.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//using namespace njoy::tools;
namespace std20 = nano;

SCENARIO( "take_view" ) {
SCENARIO( "counted_view" ) {

const std::vector< int > equal = { -2, -1, 0 };
const std::vector< int > modified = { -2, 0, 2 };
Expand Down
2 changes: 1 addition & 1 deletion src/tools/std20/views/test/reverse.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//using namespace njoy::tools;
namespace std20 = nano;

SCENARIO( "subrange" ) {
SCENARIO( "reverse_view" ) {

const std::vector< int > equal = { 2, 1, 0, -1, -2 };
const std::vector< int > modified = { 2, 2, 2, 2, 2 };
Expand Down

0 comments on commit 9d4efd0

Please sign in to comment.