From 0c9c464ffeadf4963f4b0ae5c296f727b51db2ff Mon Sep 17 00:00:00 2001 From: Oliver Reiche Date: Mon, 28 Feb 2022 13:14:23 +0100 Subject: Format: Apply clang-format suggestions to tests --- test/buildtool/file_system/file_system_manager.test.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'test/buildtool/file_system/file_system_manager.test.cpp') diff --git a/test/buildtool/file_system/file_system_manager.test.cpp b/test/buildtool/file_system/file_system_manager.test.cpp index 8527fe17..84f9e8a3 100644 --- a/test/buildtool/file_system/file_system_manager.test.cpp +++ b/test/buildtool/file_system/file_system_manager.test.cpp @@ -95,8 +95,7 @@ TEST_CASE("IsFile", "[file_system]") { "test/buildtool/file_system/data/example_file")); CHECK(FileSystemManager::IsFile( "test/buildtool/file_system/data/empty_executable")); - CHECK_FALSE( - FileSystemManager::IsFile("test/buildtool/file_system/data/")); + CHECK_FALSE(FileSystemManager::IsFile("test/buildtool/file_system/data/")); } TEST_CASE("IsExecutable", "[file_system]") { @@ -104,13 +103,13 @@ TEST_CASE("IsExecutable", "[file_system]") { "test/buildtool/file_system/data/empty_executable")); CHECK_FALSE(FileSystemManager::IsExecutable( "test/buildtool/file_system/data/example_file")); - CHECK_FALSE(FileSystemManager::IsExecutable( - "test/buildtool/file_system/data/")); + CHECK_FALSE( + FileSystemManager::IsExecutable("test/buildtool/file_system/data/")); } TEST_CASE("Type", "[file_system]") { - auto const type_file = FileSystemManager::Type( - "test/buildtool/file_system/data/example_file"); + auto const type_file = + FileSystemManager::Type("test/buildtool/file_system/data/example_file"); REQUIRE(type_file); CHECK(*type_file == ObjectType::File); -- cgit v1.2.3