Skip to content

Commit

Permalink
test: remove uncessary testdata
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanbass committed Jan 27, 2024
1 parent 708ab3a commit fc56f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-pipeline.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test_that("preprocess works on matrix", {
})

test_that("Preprocess works without providing dimensions", {
out <- suppressMessages(preprocess(X=(Sa[1]), show_progress=FALSE))
out <- suppressMessages(preprocess(X = (Sa[1]), show_progress = FALSE))
expect_equal(class(out), "list")
expect_equal(class(out[[1]])[1],"matrix")
expect_equal(rownames(out[[1]]), as.character(new.ts))
Expand All @@ -23,7 +23,7 @@ test_that("Preprocess works without providing dimensions", {


test_that("preprocess returns correct errors", {
expect_error(preprocess(X=as.data.frame(Sa[[1]]), show_progress = FALSE))
expect_error(preprocess(X = as.data.frame(Sa[[1]]), show_progress = FALSE))
})


Expand Down
Binary file removed tests/testthat/testdata/DAD1.CSV
Binary file not shown.

0 comments on commit fc56f2e

Please sign in to comment.