summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/matchobjectTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'juniper/src/test/matchobjectTest.h')
-rw-r--r--juniper/src/test/matchobjectTest.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/juniper/src/test/matchobjectTest.h b/juniper/src/test/matchobjectTest.h
index 9e0828cfa77..0f4a1ace55b 100644
--- a/juniper/src/test/matchobjectTest.h
+++ b/juniper/src/test/matchobjectTest.h
@@ -17,9 +17,9 @@
***************************************************************************/
#pragma once
-#include <map>
-#include <vespa/fastlib/testsuite/test.h>
#include "testenv.h"
+#include <vespa/fastlib/testsuite/test.h>
+#include <map>
/**
* The MatchObjectTest class holds
@@ -98,8 +98,7 @@ protected:
* print_progress which includes backspace does not work.
* We'll use a single '.' instead.
*/
- virtual void print_progress() override { *m_osptr << '.' << std::flush; }
-
+ void print_progress() override { *m_osptr << '.' << std::flush; }
public:
MatchObjectTest() : Test("MatchObject"), test_methods_() { init(); }
@@ -109,7 +108,7 @@ public:
* main entry points
*************************************************************************/
void Run(MethodContainer::iterator &itr);
- virtual void Run() override;
+ void Run() override;
void Run(const char *method);
void Run(int argc, char* argv[]);
};