]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
speedtest: rename the second statring
authorPieter Lexis <pieter.lexis@powerdns.com>
Wed, 20 Feb 2019 16:37:53 +0000 (17:37 +0100)
committerPieter Lexis <pieter.lexis@powerdns.com>
Wed, 20 Feb 2019 16:37:53 +0000 (17:37 +0100)
pdns/speedtest.cc

index 9099d3d0ac27d5f638bc2e21782f56982191dc89..161eeb8ea83329edb8467590ef0cef3f0c8547b2 100644 (file)
@@ -814,7 +814,7 @@ struct StatRingDNSNameQTypeTest
   string getName() const { return "StatRing test with DNSName and QType"; }
 
   void operator()() const {
-    S.ringAccount("testring", d_name, d_type);
+    S.ringAccount("testringdnsname", d_name, d_type);
   };
 
   DNSName d_name;
@@ -912,7 +912,7 @@ try
   S.declareRing("testring", "Just some ring where we'll account things");
   doRun(StatRingDNSNameQTypeToStringTest(DNSName("example.com"), QType(1)));
 
-  S.declareDNSNameQTypeRing("testring", "Just some ring where we'll account things");
+  S.declareDNSNameQTypeRing("testringdnsname", "Just some ring where we'll account things");
   doRun(StatRingDNSNameQTypeTest(DNSName("example.com"), QType(1)));
 #endif