Fix testdef structure

This commit is contained in:
2024-06-25 10:27:52 -04:00
parent 6954f51793
commit ab57cd5774

View File

@@ -15,9 +15,9 @@ namespace jtest {
// -maxine
struct testdef
{
const std::string& testname;
const std::function<void()>& callback;
const std::string file; // <- & is not needed here -maxine
std::string testname;
std::function<void()> callback;
std::string file; // <- & is not needed here -maxine
int line;
bool passed;
};