diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 21:46:15 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:16:18 +0200 |
commit | 7ae7170d6140f7cad730f05f84b53437058b82f4 (patch) | |
tree | 79caaefa15a1e4ae1c60def7a40425983206c281 /AK/Tests | |
parent | def1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (diff) | |
download | serenity-7ae7170d6140f7cad730f05f84b53437058b82f4.zip |
Everywhere: "file name" => "filename"
Diffstat (limited to 'AK/Tests')
-rw-r--r-- | AK/Tests/TestSourceLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Tests/TestSourceLocation.cpp b/AK/Tests/TestSourceLocation.cpp index 15910062f3..d770751d1d 100644 --- a/AK/Tests/TestSourceLocation.cpp +++ b/AK/Tests/TestSourceLocation.cpp @@ -13,7 +13,7 @@ TEST_CASE(basic_scenario) { auto location = SourceLocation::current(); - EXPECT_EQ(StringView(__FILE__), location.file_name()); + EXPECT_EQ(StringView(__FILE__), location.filename()); EXPECT_EQ(StringView(__FUNCTION__), location.function_name()); EXPECT_EQ(__LINE__ - 3u, location.line_number()); } |