calogica / dbt-expectations

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

Typo in expect_row_values_to_have_data_for_every_n_datepart example #201

Closed rlebrao closed 1 year ago

rlebrao commented 1 year ago

There's a typo in example: https://github.com/calogica/dbt-expectations#expect_row_values_to_have_data_for_every_n_datepart There's an extra ")" in this:

date_part: day
test_start_date: '2021-05-01'
test_end_date: '{{ modules.datetime.date.today() - modules.datetime.timedelta(1)) }}'

It should be: test_end_date: '{{ modules.datetime.date.today() - modules.datetime.timedelta(1) }}'