Skip to content

Commit

Permalink
remove unneeded ignoring of attr in expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Aug 11, 2024
1 parent c248f31 commit 0b0785f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/testthat/test-oneway-anova-nonparametric.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)
2 changes: 1 addition & 1 deletion tests/testthat/test-oneway-anova-parametric.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)
2 changes: 1 addition & 1 deletion tests/testthat/test-two-sample-bayes.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)
2 changes: 1 addition & 1 deletion tests/testthat/test-two-sample-nonparametric.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)
2 changes: 1 addition & 1 deletion tests/testthat/test-two-sample-parametric.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)
2 changes: 1 addition & 1 deletion tests/testthat/test-two-sample-robust.R
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ test_that(
paired = TRUE
)

expect_equal(expr1, expr2, ignore_attr = TRUE)
expect_identical(expr1, expr2)
}
)

0 comments on commit 0b0785f

Please sign in to comment.