From f3860470c23bf3aac95f419ffd402260259df9a2 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Sun, 14 Jul 2024 22:56:23 +0700 Subject: [PATCH] DONT MERGE --- test/cmake/GitCheckoutTest.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cmake/GitCheckoutTest.cmake b/test/cmake/GitCheckoutTest.cmake index 323de6d..8ca3306 100644 --- a/test/cmake/GitCheckoutTest.cmake +++ b/test/cmake/GitCheckoutTest.cmake @@ -4,7 +4,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/Assertion.cmake) find_package(GitCheckout REQUIRED PATHS ${CMAKE_CURRENT_LIST_DIR}/../../cmake) -function("Check out a Git repository") +section("it should check out a Git repository") if(EXISTS project-starter) file(REMOVE_RECURSE project-starter) endif() @@ -12,7 +12,7 @@ function("Check out a Git repository") git_checkout(https://github.com/threeal/project-starter) assert_git_complete_checkout(project-starter) -endfunction() +endsection() function("Check out a Git repository into an existing Git directory") cmake_language(CALL "Check out a Git repository")