Skip to content

Commit 4f441e2

Browse files
committed
update test gh-user data with new date column in commits
1 parent f476ae4 commit 4f441e2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: repometrics
22
Title: Metrics for Your Code Repository
3-
Version: 0.1.3.013
3+
Version: 0.1.3.014
44
Authors@R:
55
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/repometrics",
99
"issueTracker": "https://github.com/ropensci-review-tools/repometrics/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.3.013",
11+
"version": "0.1.3.014",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

tests/testthat/test-rm-data-gh-user.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ test_that ("rm user data internal structures", {
4848

4949
expect_s3_class (dat$commits, "data.frame")
5050
expect_true (nrow (dat$commits) > 0L)
51-
expect_equal (ncol (dat$commits), 2L)
52-
nms <- c ("repo", "num_commits")
51+
expect_equal (ncol (dat$commits), 3L)
52+
nms <- c ("repo", "num_commits", "date")
5353
expect_named (dat$commits, nms)
5454

5555
expect_s3_class (dat$issues, "data.frame")

0 commit comments

Comments
 (0)