summaryrefslogtreecommitdiff
path: root/tests/testthat
diff options
context:
space:
mode:
authorChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
committerChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
commitc9febb74dddab29b7e60488c91564796387f2785 (patch)
tree389dc3744bec3568dd2621eb9ed75ede3efb4bee /tests/testthat
parentc9155f21e709ff2d2b84f132f2e8bdf62f0078b8 (diff)
Rename corplot to heatmap
Diffstat (limited to 'tests/testthat')
-rw-r--r--tests/testthat/text-heatmap.R (renamed from tests/testthat/test-corplot.R)2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testthat/test-corplot.R b/tests/testthat/text-heatmap.R
index 2aecdc1..94ea14e 100644
--- a/tests/testthat/test-corplot.R
+++ b/tests/testthat/text-heatmap.R
@@ -1,5 +1,5 @@
test_that("returns a ggplot object", {
x <- matrix(data = rnorm(100), nrow = 10)
- p <- corplot(x)
+ p <- heatmap(x)
inherits(p, 'ggplot')
})