diff options
author | howar6hill <f.eiwu@yahoo.com> | 2020-02-28 03:51:30 +0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-27 21:16:02 +0100 |
commit | a19967d5c38bb0fa99843c4585015b19cc11ee76 (patch) | |
tree | 7d071a0626ddc27e766dce28843d01555bf07d12 /AK/Tests | |
parent | 3523071bb7527159f213d3710f4c74d10cf93b1a (diff) | |
download | serenity-a19967d5c38bb0fa99843c4585015b19cc11ee76.zip |
Tests: Fix a typo inTestRefPtr
Diffstat (limited to 'AK/Tests')
-rw-r--r-- | AK/Tests/TestRefPtr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Tests/TestRefPtr.cpp b/AK/Tests/TestRefPtr.cpp index 633af6f70f..cf03da32c2 100644 --- a/AK/Tests/TestRefPtr.cpp +++ b/AK/Tests/TestRefPtr.cpp @@ -83,4 +83,4 @@ TEST_CASE(assign_copy_self) EXPECT_EQ(object->ref_count(), 1); } -TEST_MAIN(String) +TEST_MAIN(RefPtr) |