Extras (unittests)

- Cleaned up tests
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-11 08:24:05 +02:00
parent 3e3355eb12
commit 7b0d88cead
1 changed files with 4 additions and 4 deletions

View File

@ -81,10 +81,10 @@ unittest
mixin LoggingFuncs!(gLogger);
DEBUG("fok", 2,2);
ERROR("fok", 2,2);
INFO("fok", 2,2);
WARN("fok", 2,2);
DEBUG("This is debug", 2.3, true, [2,2]);
ERROR("This is error", 2.3, true, [2,2]);
INFO("This is info", 2.3, true, [2,2]);
WARN("This is warn", 2.3, true, [2,2]);
writeln();
}