Fix testdef structure
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user