summaryrefslogtreecommitdiff
path: root/project2/basics/tests/lessthan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'project2/basics/tests/lessthan.cpp')
-rw-r--r--project2/basics/tests/lessthan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/basics/tests/lessthan.cpp b/project2/basics/tests/lessthan.cpp
index f040532..3f172ef 100644
--- a/project2/basics/tests/lessthan.cpp
+++ b/project2/basics/tests/lessthan.cpp
@@ -16,9 +16,9 @@ class LessThan : public Test {
bool passes(ExecContext * ec) const {
return (a(ec) < b(ec));
}
-
+
private:
Variable a, b;
};
-DECLARE_LOADER("lessthan", LessThan);
+NAMEDFACTORY("lessthan", LessThan, TestFactory);