Skip to content

Commit

Permalink
fixing lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
samshuster committed Oct 19, 2020
1 parent 25d5f96 commit 70b83d9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/unit/extractor/test_deltalake_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@ def test_scrape_table_detail(self) -> None:
'''Test Table Detail Scraping'''
actual = self.dExtractor.scrape_table_detail("test_schema1.test_table1")
expected: Dict = {'createdAt': None,
'description': None,
'format': 'delta',
'id': None,
'lastModified': None,
'location': None,
'minReaderVersion': 1,
'minWriterVersion': 2,
'name': 'test_schema1.test_table1',
'numFiles': 0,
'partitionColumns': [],
'properties': {},
'sizeInBytes': 0}
'description': None,
'format': 'delta',
'id': None,
'lastModified': None,
'location': None,
'minReaderVersion': 1,
'minWriterVersion': 2,
'name': 'test_schema1.test_table1',
'numFiles': 0,
'partitionColumns': [],
'properties': {},
'sizeInBytes': 0}
self.assertIsNotNone(actual)
if actual:
self.assertEqual(actual.keys(), expected.keys())
Expand Down

0 comments on commit 70b83d9

Please sign in to comment.