From: Mukund Sivaraman Date: Tue, 4 Feb 2014 13:22:59 +0000 (+0530) Subject: [2430] Rollback case change X-Git-Tag: bind10-1.2.0beta1-release~50^2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06cd899614951d962cf1454d2deeff5b31ad38c7;p=thirdparty%2Fkea.git [2430] Rollback case change These were not the correct tests to be modified. The correct tests to be modified do not use any hex alphabets currently, and the alphabets are also generated in the LHS names which are case-insensitive during comparison. This will be properly fixed in the next commits on the branch. --- diff --git a/src/lib/dns/tests/master_loader_unittest.cc b/src/lib/dns/tests/master_loader_unittest.cc index 50fb94a697..5ded29352d 100644 --- a/src/lib/dns/tests/master_loader_unittest.cc +++ b/src/lib/dns/tests/master_loader_unittest.cc @@ -558,8 +558,8 @@ TEST_F(MasterLoaderTest, generateWithModifiers) { checkRR("b.5.0.0.example.org", RRType::A(), "192.0.2.91"); checkRR("c.5.0.0.example.org", RRType::A(), "192.0.2.92"); - checkRR("E.5.0.0.example.org", RRType::A(), "192.0.2.94"); - checkRR("F.5.0.0.example.org", RRType::A(), "192.0.2.95"); + checkRR("e.5.0.0.example.org", RRType::A(), "192.0.2.94"); + checkRR("f.5.0.0.example.org", RRType::A(), "192.0.2.95"); checkRR("0.6.0.0.example.org", RRType::A(), "192.0.2.96"); checkRR("2.6.0.0.0.example.org", RRType::A(), "192.0.2.98");