calogica / dbt-expectations

Port(ish) of Great Expectations to dbt test macros
https://calogica.github.io/dbt-expectations/
Apache License 2.0
1.06k stars 128 forks source link

You have 3 'p's in upper in the documentation, meaning the samples error when used #218

Closed Mark-Robinson closed 1 year ago

Mark-Robinson commented 1 year ago

For example, you have:

models: # or seeds:
  - name: my_model
    tests:
    - dbt_expectations.expect_table_columns_to_not_contain_set:
        column_list: ["col_a", "col_b"]
        transform: uppper # (Optional)

when really it should be:

models: # or seeds:
  - name: my_model
    tests:
    - dbt_expectations.expect_table_columns_to_not_contain_set:
        column_list: ["col_a", "col_b"]
        transform: upper # (Optional)

(Notice uppper vs upper)

clausherther commented 1 year ago

Thanks for flagging that typo, we'll get that fixed.