Skip to content

Commit 80e561a

Browse files
committed
Fix test for default version of R
1 parent 6cb5210 commit 80e561a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/r/r-rspm-apt-file/verify.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
library('digest')
33

44

5-
# Fail if version isn't 4.2, the default version for the RBuildPack
5+
# Fail if version isn't 4.4, the default version for the RBuildPack
66
print(version)
7-
if (!(version$major == "4" && as.double(version$minor) >= 2 && as.double(version$minor) < 3)) {
7+
if (!(version$major == "4" && as.double(version$minor) >= 4 && as.double(version$minor) < 5)) {
88
quit("yes", 1)
99
}

0 commit comments

Comments
 (0)