Skip to content

Commit 2145136

Browse files
committed
Remove extra space
1 parent d43d768 commit 2145136

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

R/expect-comparison.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ expect_compare_ <- function(
4444
if (!isTRUE(cmp)) {
4545
digits <- min_digits(act$val, exp$val)
4646
msg <- sprintf(
47-
"%s is %s %s. \n%s - %s = %s %s 0",
47+
"%s is %s %s.\n%s - %s = %s %s 0",
4848
act$lab,
4949
msg,
5050
exp$lab,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# useful output when numbers are very small
22

3-
1.1 * x is not less than `x`.
3+
1.1 * x is not less than `x`.
44
0.0000110 - 0.0000100 = 0.0000010 >= 0
55

66
---
77

8-
`x` is not strictly greater than 1.1 * x.
8+
`x` is not strictly greater than 1.1 * x.
99
0.0000100 - 0.0000110 = -0.0000010 < 0
1010

0 commit comments

Comments
 (0)