Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenyuLInx committed May 3, 2024
1 parent 129e3d2 commit 349e03a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/dbt/deps/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from dbt.config.renderer import PackageRenderer
from dbt.contracts.project import (
GitPackage,
PrivatePackage,
LocalPackage,
PackageSpec,
PrivatePackage,
RegistryPackage,
TarballPackage,
)
Expand Down
3 changes: 2 additions & 1 deletion tests/functional/configs/test_custom_node_colors_configs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pytest

from dbt.exceptions import ConfigUpdateError
from dbt.tests.util import get_manifest, run_dbt
from dbt_common.dataclass_schema import ValidationError

Expand Down Expand Up @@ -304,7 +305,7 @@ def test__invalid_color_config_block(
self,
project,
):
with pytest.raises(ValidationError):
with pytest.raises((ValidationError, ConfigUpdateError)):
run_dbt(["compile"])


Expand Down

0 comments on commit 349e03a

Please sign in to comment.