X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=blobdiff_plain;f=src%2FTests%2FUnit%2FSummaryFile1Test.py;h=a72539b44b874c51e61bd359ce095f60bd29e19f;hp=ca187b5c4aa3207f3811b013cf37642579cbc1b0;hb=cc8bf3b13b57668f8b83d814b496ceca496ced08;hpb=6e5e447e6e928608a9f1aed3639746781752fc3f diff --git a/src/Tests/Unit/SummaryFile1Test.py b/src/Tests/Unit/SummaryFile1Test.py index ca187b5..a72539b 100644 --- a/src/Tests/Unit/SummaryFile1Test.py +++ b/src/Tests/Unit/SummaryFile1Test.py @@ -78,13 +78,13 @@ class GeoRecordParserTest(unittest.TestCase): def testMdGeoRecordCount(self): fixture_path = Tests.Fixtures.Path() + '/SummaryFile1/mdgeo.uf1' records = self.grp.parse_file(fixture_path) - self.assertEqual(len(records), 98763) + self.assertEqual(len(records), 1000) def testMdGeoBlockCount(self): fixture_path = Tests.Fixtures.Path() + '/SummaryFile1/mdgeo.uf1' blocks = self.grp.parse_blocks(fixture_path) - self.assertEqual(len(blocks), 79128) + self.assertEqual(len(blocks), 910) def suite():