aboutsummaryrefslogtreecommitdiffstats
path: root/util/format.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/format.lua')
-rw-r--r--util/format.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/util/format.lua b/util/format.lua
index b3296228..99705d03 100644
--- a/util/format.lua
+++ b/util/format.lua
@@ -4,7 +4,6 @@
local tostring = tostring;
local select = select;
-local assert = assert;
local unpack = unpack;
local type = type;
@@ -60,15 +59,6 @@ local function format(formatstring, ...)
return formatstring:format(unpack(args));
end
-local function test()
- assert(format("%s", "hello") == "hello");
- assert(format("%s") == "<nil>");
- assert(format("%s", true) == "true");
- assert(format("%d", true) == "[true]");
- assert(format("%%", true) == "% [true]");
-end
-
return {
format = format;
- test = test;
};