Skip to content

Commit

Permalink
fix match-pts-fns for #263
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Feb 13, 2025
1 parent c107977 commit 056d62f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dodgr
Title: Distances on Directed Graphs
Version: 0.4.1.051
Version: 0.4.1.052
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre")),
person("Andreas", "Petutschnig", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"codeRepository": "https://github.com/UrbanAnalyst/dodgr",
"issueTracker": "https://github.com/UrbanAnalyst/dodgr/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.4.1.051",
"version": "0.4.1.052",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-match-pts-fns.R
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,5 @@ test_that ("match with distances", {
expect_identical (names (res), c ("index", "d_signed", "x", "y"))
expect_true (length (which (res$d_signed < 0)) > 0L)
expect_true (length (which (res$d_signed > 0)) > 0L)
expect_true (length (which (res$d_signed == 0)) > 0L)
expect_true (length (which (res$d_signed == 0)) == 0L)
})

0 comments on commit 056d62f

Please sign in to comment.