summaryrefslogtreecommitdiff
path: root/src/test.cpp
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-12-11 17:58:50 -0500
committerShadowNinja <shadowninja@minetest.net>2015-01-03 14:50:16 -0500
commit3c3887bb198c07b50ad3451f228aadfe6fd25168 (patch)
treefec7a00f1e64b9d2fc269d41cef42940c155c62a /src/test.cpp
parentd91559b8f08a8e1957f673307b777da176c31b5a (diff)
downloadminetest-3c3887bb198c07b50ad3451f228aadfe6fd25168.tar.gz
minetest-3c3887bb198c07b50ad3451f228aadfe6fd25168.tar.bz2
minetest-3c3887bb198c07b50ad3451f228aadfe6fd25168.zip
Deduplicate code and use stdlib in string functions
Diffstat (limited to 'src/test.cpp')
-rw-r--r--src/test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test.cpp b/src/test.cpp
index 4cf4460be..a9ec6ffbb 100644
--- a/src/test.cpp
+++ b/src/test.cpp
@@ -189,7 +189,7 @@ struct TestUtilities: public TestBase
str_replace(test_str, "there", "world");
UASSERT(test_str == "Hello world");
test_str = "ThisAisAaAtest";
- str_replace_char(test_str, 'A', ' ');
+ str_replace(test_str, 'A', ' ');
UASSERT(test_str == "This is a test");
UASSERT(string_allowed("hello", "abcdefghijklmno") == true);
UASSERT(string_allowed("123", "abcdefghijklmno") == false);