Skip to content

Commit

Permalink
update tests with new trace_source col for #14
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Sep 8, 2022
1 parent c949898 commit bc6bfaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: typetracer
Title: Trace Function Parameter Types
Version: 0.1.1.003
Version: 0.1.1.004
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/mpadge/typetracer",
"issueTracker": "https://github.com/mpadge/typetracer/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.1.003",
"version": "0.1.1.004",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
6 changes: 3 additions & 3 deletions tests/testthat/test-trace-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test_that ("trace installed package", {
expect_identical (
names (x0),
c (
"trace_number", "fn_name",
"trace_number", "trace_source", "fn_name",
"fn_call_hash", "par_name", "class",
"typeof", "mode", "storage_mode", "length",
"formal", "uneval", "eval", "source"
Expand All @@ -46,7 +46,7 @@ test_that ("trace installed package", {
expect_identical (
names (x1),
c (
"trace_number", "fn_name",
"trace_number", "trace_source", "fn_name",
"fn_call_hash", "par_name", "class",
"typeof", "mode", "storage_mode", "length",
"formal", "uneval", "eval", "source"
Expand Down Expand Up @@ -91,7 +91,7 @@ test_that ("trace source package", {
expect_identical (
names (x0),
c (
"trace_number", "fn_name",
"trace_number", "trace_source", "fn_name",
"fn_call_hash", "par_name", "class",
"typeof", "mode", "storage_mode", "length",
"formal", "uneval", "eval", "source"
Expand Down

0 comments on commit bc6bfaf

Please sign in to comment.