File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/functional/duplicates Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def macros(self):
4141 }
4242
4343 def test_duplicate_macros (self , project ):
44- message = 'dbt found two macros named "some_macro" in the project'
44+ message = 'dbt found multiple macros named "some_macro" in the project'
4545 with pytest .raises (CompilationError ) as exc :
4646 run_dbt (["parse" ])
4747 exc_str = " " .join (str (exc .value ).split ()) # flatten all whitespace
@@ -62,7 +62,7 @@ def macros(self):
6262 }
6363
6464 def test_duplicate_macros (self , project ):
65- message = 'dbt found two macros named "some_macro" in the project'
65+ message = 'dbt found multiple macros named "some_macro" in the project'
6666 with pytest .raises (CompilationError ) as exc :
6767 run_dbt (["compile" ])
6868 exc_str = " " .join (str (exc .value ).split ()) # flatten all whitespace
You can’t perform that action at this time.
0 commit comments