summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/auxTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'juniper/src/test/auxTest.h')
-rw-r--r--juniper/src/test/auxTest.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/juniper/src/test/auxTest.h b/juniper/src/test/auxTest.h
index 218dcaab6d0..a98adc732f4 100644
--- a/juniper/src/test/auxTest.h
+++ b/juniper/src/test/auxTest.h
@@ -7,7 +7,6 @@
#include <vespa/fastlib/testsuite/test.h>
#include "testenv.h"
-
class AuxTest : public Test
{
private:
@@ -25,14 +24,14 @@ public:
void Run(MethodContainer::iterator &itr);
void Run(const char* method);
void Run(int argc, char* argv[]);
- virtual void Run() override;
+ void Run() override;
protected:
/**
* Since we are running within Emacs, the default behavior of
* 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; }
private:
// tests:
void TestPropertyMap();