diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-02-28 13:14:23 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-02-28 13:44:06 +0100 |
commit | 0c9c464ffeadf4963f4b0ae5c296f727b51db2ff (patch) | |
tree | 598e487b1d286c1be88fd4d43cb663dffd0f1f61 /test/buildtool/file_system | |
parent | f06db3fcbcfed973e9366c2a667b3f71da9afec8 (diff) | |
download | justbuild-0c9c464ffeadf4963f4b0ae5c296f727b51db2ff.tar.gz |
Format: Apply clang-format suggestions to tests
Diffstat (limited to 'test/buildtool/file_system')
-rw-r--r-- | test/buildtool/file_system/file_system_manager.test.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
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); |