Remove a #include <base/system.h>

The variable isn't actually a path, just the test name formatted as file
name, so the 64 isn't actually too strict.
This commit is contained in:
heinrich5991 2021-09-13 12:40:40 +02:00
parent 89e3d694b9
commit 9b4b0cd4eb

View file

@ -1,8 +1,6 @@
#ifndef TEST_TEST_H
#define TEST_TEST_H
#include <base/system.h>
class IStorage;
class CTestInfo
@ -11,6 +9,6 @@ public:
CTestInfo();
IStorage *CreateTestStorage();
void DeleteTestStorageFilesOnSuccess();
char m_aFilename[IO_MAX_PATH_LENGTH];
char m_aFilename[64];
};
#endif // TEST_TEST_H