summaryrefslogtreecommitdiff
path: root/main/tests
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-14 00:51:09 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-14 00:51:09 -0300
commitd9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6 (patch)
treef5c92321612fdd5f8967c349898d3475b52bf930 /main/tests
parentf3b6177ece8a06e52870ed422cbcc67276606e5a (diff)
rename String.extension() -> String.get_extension() / String.basename() -> String.get_basename()
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/test_gdscript.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/test_gdscript.cpp b/main/tests/test_gdscript.cpp
index 1ee27ec661..4f4e76d517 100644
--- a/main/tests/test_gdscript.cpp
+++ b/main/tests/test_gdscript.cpp
@@ -1026,7 +1026,7 @@ MainLoop* test(TestType p_test) {
} else if (p_test==TEST_BYTECODE) {
Vector<uint8_t> buf = GDTokenizerBuffer::parse_code_string(code);
- String dst = test.basename()+".gdc";
+ String dst = test.get_basename()+".gdc";
FileAccess *fw = FileAccess::open(dst,FileAccess::WRITE);
fw->store_buffer(buf.ptr(),buf.size());
memdelete(fw);