summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDennis van der Schagt <dennisschagt@gmail.com>2022-05-28 18:14:59 +0200
committerDennis van der Schagt <dennisschagt@gmail.com>2022-05-28 18:14:59 +0200
commit6b06dfbcc0aff68c7ce72ece84a9f6076cf14827 (patch)
treeb70182f30c0b45aaeb30f88936b2605d52e49611 /test
parent7164601813887e6631faccb6853e66dee39498a0 (diff)
Name file_system namespace according to style guide
Diffstat (limited to 'test')
-rw-r--r--test/filesystembrowser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/filesystembrowser.cpp b/test/filesystembrowser.cpp
index 92cf5577..c309c707 100644
--- a/test/filesystembrowser.cpp
+++ b/test/filesystembrowser.cpp
@@ -2,9 +2,9 @@
#include "filesystembrowser.h"
-using namespace newsboat::FileSystemBrowser;
+using namespace newsboat::file_system;
-TEST_CASE("mode_suffix", "[FileSystemBrowser]")
+TEST_CASE("mode_suffix", "[file_system]")
{
SECTION("Basic checks") {
REQUIRE(mode_suffix(0644 | S_IFREG) == nonstd::nullopt);
@@ -49,7 +49,7 @@ TEST_CASE("mode_suffix", "[FileSystemBrowser]")
}
}
-TEST_CASE("permissions_string", "[FileSystemBrowser]")
+TEST_CASE("permissions_string", "[file_system]")
{
REQUIRE(permissions_string(0710) == "rwx--x---");
REQUIRE(permissions_string(0257) == "-w-r-xrwx");