Skip to content

Commit 2f4a5ee

Browse files
committed
Correct a nit picked (quite correctly) by copilot
1 parent 89de1b2 commit 2f4a5ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/tinytest/test_sugar.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ expect_equal(cx_row_means(x, TRUE), apply(x, 1, mean, na.rm=TRUE), info = "compl
12741274

12751275
expect_equal(cx_col_means(x), colMeans(x), info = "complex / colMeans / keep NA / mixed input")
12761276
expect_equal(cx_col_means(x, TRUE), colMeans(x, TRUE), info = "complex / colMeans / rm NA / mixed input")
1277-
expect_equal(cx_col_means(x, TRUE), apply(x, 2, mean, na.rm=TRUE), info = "complex / rowMeans / rm NA / mixed input")
1277+
expect_equal(cx_col_means(x, TRUE), apply(x, 2, mean, na.rm=TRUE), info = "complex / colMeans / rm NA / mixed input")
12781278

12791279
x[] <- NA_complex_
12801280

0 commit comments

Comments
 (0)