Skip to content

Commit 807f3dc

Browse files
Merge pull request #260 from StuartWheater/v6.1-dev_text-fix
V6.1 dev text fix
2 parents 9a40d51 + ecc27a8 commit 807f3dc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ Detailed instructions on how to install DataSHIELD are at https://www.datashield
3232
| obiba CRAN | Where you probably should install DataSHIELD from. |
3333
| releases | Stable releases. |
3434
| master branch | Mostly in sync with the latest release, changes rarely. |
35-
| v6.0-dev branch (or similar) | Bleeding edge development. We make no claims that this branch is fully functional at any given time. |
35+
| v6.1-dev branch (or similar) | Bleeding edge development. We make no claims that this branch is fully functional at any given time. |

tests/testthat/definition_tests/def-ds.skewness.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
server.median<-median(server.variable)
4545
server.mode<-DescTools::Mode(server.variable)
4646

47-
if(skewness.server[[1]][1]>0)
47+
if(as.numeric(skewness.server[[1]][1])>0)
4848
{
4949
if(!is.na(server.mode[1]))
5050
{
@@ -79,7 +79,7 @@
7979
Q2<-server.quantile[3]
8080
Q3<-server.quantile[4]
8181

82-
if(skewness.server[[1]][1]>0)
82+
if(as.numeric(skewness.server[[1]][1])>0)
8383
{
8484
expect_true(Q3-Q2>Q2-Q1)
8585

0 commit comments

Comments
 (0)