From 37de1c37ea2ccdc19ac65d76d3f76451677dd9ae Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Sun, 14 Jul 2024 22:52:51 +0700 Subject: [PATCH] chore: bump Assertion.cmake to version 1.0.0 (#111) --- test/cmake/Assertion.cmake | 4 ++-- test/cmake/GitCheckoutTest.cmake | 2 +- test/cmake/GitCloneTest.cmake | 2 +- test/cmake/GitOtherTest.cmake | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/cmake/Assertion.cmake b/test/cmake/Assertion.cmake index f0a6d63..27c025d 100644 --- a/test/cmake/Assertion.cmake +++ b/test/cmake/Assertion.cmake @@ -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) diff --git a/test/cmake/GitCheckoutTest.cmake b/test/cmake/GitCheckoutTest.cmake index 23d696f..323de6d 100644 --- a/test/cmake/GitCheckoutTest.cmake +++ b/test/cmake/GitCheckoutTest.cmake @@ -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") diff --git a/test/cmake/GitCloneTest.cmake b/test/cmake/GitCloneTest.cmake index 3e46950..4e5a8c7 100644 --- a/test/cmake/GitCloneTest.cmake +++ b/test/cmake/GitCloneTest.cmake @@ -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}") diff --git a/test/cmake/GitOtherTest.cmake b/test/cmake/GitOtherTest.cmake index 298b7c8..93c7dbb 100644 --- a/test/cmake/GitOtherTest.cmake +++ b/test/cmake/GitOtherTest.cmake @@ -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)