Skip to content

Commit e74635b

Browse files
committed
Fix failing sanity tests
1 parent ea80309 commit e74635b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ target_link_libraries(catch_main PUBLIC Catch2::Catch2)
88
target_link_libraries(catch_main PRIVATE project_options)
99

1010
# Provide a simple smoke test to make sure that the CLI works and can display a --help message
11-
add_test(NAME cli.has_help COMMAND intro --help)
11+
add_test(NAME cli.has_help COMMAND awesome_game --help)
1212

1313
# Provide a test to verify that the version being reported from the application
1414
# matches the version given to CMake. This will be important once you package
1515
# your program. Real world shows that this is the kind of simple mistake that is easy
1616
# to make, but also easy to test for.
17-
add_test(NAME cli.version_matches COMMAND intro --version)
17+
add_test(NAME cli.version_matches COMMAND awesome_game --version)
1818
set_tests_properties(cli.version_matches PROPERTIES PASS_REGULAR_EXPRESSION "${PROJECT_VERSION}")
1919

2020

0 commit comments

Comments
 (0)