summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/commandtests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/commandtests.cpp')
-rw-r--r--src/mongo/dbtests/commandtests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/dbtests/commandtests.cpp b/src/mongo/dbtests/commandtests.cpp
index d2479943ffc..2a464621bcd 100644
--- a/src/mongo/dbtests/commandtests.cpp
+++ b/src/mongo/dbtests/commandtests.cpp
@@ -361,9 +361,9 @@ public:
}
};
-class All : public Suite {
+class All : public OldStyleSuiteSpecification {
public:
- All() : Suite("commands") {}
+ All() : OldStyleSuiteSpecification("commands") {}
void setupTests() {
add<FileMD5::Type0>();
@@ -380,5 +380,5 @@ public:
}
};
-SuiteInstance<All> all;
+OldStyleSuiteInitializer<All> all;
} // namespace CommandTests