Skip to content

Commit 2df91c5

Browse files
committed
Fix bug in check_constraints.qf_table()
1 parent bd990f4 commit 2df91c5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: qualifyr
22
Type: Package
33
Title: Validate Relational Data Structures
4-
Version: 0.1.0.9003
4+
Version: 0.1.0.9004
55
Authors@R: c(
66
person(
77
"Ian", "Farm",

R/qf_table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ check_constraints.qf_table <- function(x) {
6868
constraint_checks,
6969
subclass = "qf_check_table",
7070
satisfied = purrr::every(constraint_checks, satisfied),
71-
handled = purrr::every(constraint_checks, satisfied)
71+
handled = purrr::every(constraint_checks, handled)
7272
)
7373
}
7474

0 commit comments

Comments
 (0)