Skip to content

Commit

Permalink
Fix import error
Browse files Browse the repository at this point in the history
  • Loading branch information
mwallace582 committed Jan 16, 2024
1 parent 8b32461 commit 53e6c19
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/unit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from unittest import mock
from unittest import TestCase

from hologram import ValidationError
from dbt.config.project import PartialProject


Expand Down Expand Up @@ -146,13 +145,6 @@ def assert_symmetric(self, obj, dct, cls=None):
self.assert_to_dict(obj, dct)
self.assert_from_dict(obj, dct, cls)

def assert_fails_validation(self, dct, cls=None):
if cls is None:
cls = self.ContractType

with self.assertRaises(ValidationError):
cls.from_dict(dct)


def generate_name_macros(package):
from dbt.contracts.graph.parsed import ParsedMacro
Expand Down

0 comments on commit 53e6c19

Please sign in to comment.