Browse Source

[1535] (editorial) folded long lines

JINMEI Tatuya 13 years ago
parent
commit
ce81fab641

+ 1 - 1
src/lib/datasrc/tests/memory_datasrc_unittest.cc

@@ -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) {

+ 2 - 1
src/lib/python/isc/datasrc/datasrc.cc

@@ -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,