summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/counttests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/counttests.cpp')
-rw-r--r--src/mongo/dbtests/counttests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/dbtests/counttests.cpp b/src/mongo/dbtests/counttests.cpp
index a5a614016da..86f3ac51b71 100644
--- a/src/mongo/dbtests/counttests.cpp
+++ b/src/mongo/dbtests/counttests.cpp
@@ -157,9 +157,9 @@ public:
}
};
-class All : public Suite {
+class All : public OldStyleSuiteSpecification {
public:
- All() : Suite("count") {}
+ All() : OldStyleSuiteSpecification("count") {}
void setupTests() {
add<Basic>();
@@ -169,6 +169,6 @@ public:
}
};
-SuiteInstance<All> myall;
+OldStyleSuiteInitializer<All> myall;
} // namespace CountTests