Skip to content

Commit

Permalink
chore: bump Assertion.cmake to version 1.0.0 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
threeal authored Jul 14, 2024
1 parent e205799 commit 37de1c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/cmake/Assertion.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
include_guard(GLOBAL)

file(
DOWNLOAD https://github.com/threeal/assertion-cmake/releases/download/v0.3.0/Assertion.cmake
DOWNLOAD https://github.com/threeal/assertion-cmake/releases/download/v1.0.0/Assertion.cmake
${CMAKE_BINARY_DIR}/Assertion.cmake
EXPECTED_MD5 851f49c10934d715df5d0b59c8b8c72a
EXPECTED_MD5 1d8ec589d6cc15772581bf77eb3873ff
)
include(${CMAKE_BINARY_DIR}/Assertion.cmake)

Expand Down
2 changes: 1 addition & 1 deletion test/cmake/GitCheckoutTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function("Check out a Git repository on a specific invalid ref")

assert_fatal_error(
CALL git_checkout https://github.com/threeal/project-starter REF invalid-ref
MESSAGE "Failed to check out '${CMAKE_CURRENT_BINARY_DIR}/project-starter' to 'invalid-ref' (1)")
MESSAGE "Failed to check out '${CMAKE_CURRENT_BINARY_DIR}/project-starter' to 'invalid-ref'")
endfunction()

function("Check out a Git repository into an existing Git directory on a specific ref")
Expand Down
2 changes: 1 addition & 1 deletion test/cmake/GitCloneTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ endfunction()
function("Incompletely clone an invalid Git repository")
assert_fatal_error(
CALL _git_incomplete_clone https://github.com/threeal/invalid-project invalid-project
MESSAGE "Failed to clone 'https://github.com/threeal/invalid-project' (128)")
MESSAGE "Failed to clone 'https://github.com/threeal/invalid-project'")
endfunction()

cmake_language(CALL "${TEST_COMMAND}")
4 changes: 2 additions & 2 deletions test/cmake/GitOtherTest.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
file(
DOWNLOAD https://github.com/threeal/assertion-cmake/releases/download/v0.3.0/Assertion.cmake
DOWNLOAD https://github.com/threeal/assertion-cmake/releases/download/v1.0.0/Assertion.cmake
${CMAKE_BINARY_DIR}/Assertion.cmake
EXPECTED_MD5 851f49c10934d715df5d0b59c8b8c72a
EXPECTED_MD5 1d8ec589d6cc15772581bf77eb3873ff
)
include(${CMAKE_BINARY_DIR}/Assertion.cmake)

Expand Down

0 comments on commit 37de1c3

Please sign in to comment.