Skip to content

Commit 4a6a4cf

Browse files
committed
test: Break formatting
1 parent 1b2abd5 commit 4a6a4cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/coerce.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ static long long string_to_int64(const char* x) {
1010
long long xi = strtoll(x, &px, 10);
1111
if (*px) return LLONG_MIN;
1212
if (xi == LLONG_MAX) return LLONG_MIN;
13-
if (xi < 1) return LLONG_MIN;
13+
if (xi < 1) return LLONG_MIN;
1414
return xi;
1515
}
1616

tests/testthat/test-vignette-invariants.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test_that("invariants vignette", {
2-
skip_if_not_installed("vctrs", "0.4.1.9000")
2+
skip_if_not_installed( "vctrs", "0.4.1.9000")
33
skip_if_not_installed("knitr", "1.50.4")
44
skip_if(getRversion() < "4.0")
55
test_galley("invariants", variant = rlang_pillar_variant())

0 commit comments

Comments
 (0)