Skip to content

Commit

Permalink
fixed error_id typo and added associated tests (#4070)
Browse files Browse the repository at this point in the history
* fixed error_id typo and added tests

* added changelog entry

automatic commit by git-black, original commits:
  4307a82
  • Loading branch information
emmyoop authored and iknox-fa committed Feb 8, 2022
1 parent 011b43e commit c7641cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/parser/generic_test_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def get_static_config(self):
if self.warn_if is not None:
config["warn_if"] = self.warn_if
if self.error_if is not None:
config['error_if'] = self.error_if
config["error_if"] = self.error_if
if self.fail_calc is not None:
config["fail_calc"] = self.fail_calc
if self.store_failures is not None:
Expand Down

0 comments on commit c7641cf

Please sign in to comment.