Skip to content

Commit e6fa5ca

Browse files
committed
Fix snapshot
1 parent b10bfe7 commit e6fa5ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/testthat/_snaps/utils-versions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# check_newer_version handles stable version scenarios
22

33
Code
4-
check_newer_version("1.0.0")
4+
expect_invisible(expect_true(check_newer_version("1.0.0")))
55
Message
66
i You are using an older version of Quarto: 1.0.0.
77
The latest stable version is: 1.5.3.
@@ -10,22 +10,22 @@
1010
---
1111

1212
Code
13-
check_newer_version("1.5.3")
13+
expect_invisible(expect_false(check_newer_version("1.5.3")))
1414
Message
1515
i You are using the latest stable version of Quarto: 1.5.3.
1616

1717
# check_newer_version handles prerelease version scenarios
1818

1919
Code
20-
check_newer_version("1.6.3")
20+
expect_invisible(expect_true(check_newer_version("1.6.3")))
2121
Message
2222
i You are using prerelease version of Quarto: 1.6.3.
2323
A newer version is available: 1.6.4. You can download it from <https://quarto.org/docs/download/prerelease.html> or your preferred package manager if available.
2424

2525
---
2626

2727
Code
28-
check_newer_version("1.6.5")
28+
expect_invisible(expect_false(check_newer_version("1.6.5")))
2929
Message
3030
i You are using prerelease version of Quarto: 1.6.5.
3131
You are using the latest prerelease version.

0 commit comments

Comments
 (0)