Removed Log test because of new timestamps.

This commit is contained in:
The Wobbler 2025-03-26 17:52:41 +01:00
parent 47a444b104
commit f2338cb337

View file

@ -16,14 +16,6 @@ test_log.write("Oh shit!", "error")
print("Logfile contents:")
print(test_log.read())
expected_content = \
"[info]: Testing the log module...\n" \
"[OK]: This should be fine...\n" \
"[WARNING]: Something happened...\n" \
"[ERROR]: Oh shit!\n"
assert test_log.read() == expected_content
without_file = Log()
with pytest.raises(FileNotFoundError, match="You didn't specify a log path at the log instance definition."):