Skip to content

Commit bb2d02e

Browse files
checkEquals/checkTrue
1 parent 32f6b65 commit bb2d02e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inst/unitTests/runit.Module.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ if( .runThisTest && Rcpp:::capabilities()[["Rcpp modules"]] ) {
106106

107107
test.Module.destructor <- function(){
108108
f <- new( ModuleCopyConstructor, 4L)
109-
checkEquals( !is_destructed(f) )
109+
checkTrue( !is_destructed(f) )
110110
destruct(f)
111-
checkEquals( is_destructed(f) )
111+
checkTrue( is_destructed(f) )
112112
}
113113

114114
}

0 commit comments

Comments
 (0)