]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1535] (editorial) folded long lines
authorJINMEI Tatuya <jinmei@isc.org>
Thu, 29 Mar 2012 22:26:42 +0000 (15:26 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 29 Mar 2012 22:26:42 +0000 (15:26 -0700)
src/lib/datasrc/tests/memory_datasrc_unittest.cc
src/lib/python/isc/datasrc/datasrc.cc

index b85e6cbe44117f4bffe92b885f55b73c4e1602b7..dc1f099ca381d5011c43a942bd38e10624eb2bda 100644 (file)
@@ -999,7 +999,7 @@ InMemoryZoneFinderTest::findCheck(ZoneFinder::FindResultFlags expected_flags) {
     findTest(Name("nothere.example.org"), RRType::A(), ZoneFinder::NXDOMAIN,
              true, ConstRRsetPtr(), expected_flags);
     EXPECT_THROW(zone_finder_.find(Name("example.net"), RRType::A(),
-                 ZoneFinder::FIND_DEFAULT), OutOfZoneFind);
+                                   ZoneFinder::FIND_DEFAULT), OutOfZoneFind);
 }
 
 TEST_F(InMemoryZoneFinderTest, find) {
index 8da487a4070779954041e7d85d6832da572da235..75a3bd07348d3aeba425d8ddd03991a914e7be23 100644 (file)
@@ -290,7 +290,8 @@ PyInit_datasrc(void) {
         PyObjectContainer(po_DataSourceError).installToModule(mod, "Error");
         po_OutOfZoneFind = PyErr_NewException("isc.datasrc.OutOfZoneFind",
                                               NULL, NULL);
-        PyObjectContainer(po_OutOfZoneFind).installToModule(mod, "OutOfZoneFind");
+        PyObjectContainer(po_OutOfZoneFind).installToModule(mod,
+                                                            "OutOfZoneFind");
         po_NotImplemented = PyErr_NewException("isc.datasrc.NotImplemented",
                                                NULL, NULL);
         PyObjectContainer(po_NotImplemented).installToModule(mod,