Skip to content

Commit d586527

Browse files
"\01" does not really exist
1 parent 34d4cda commit d586527

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

tests/testthat/escaping/basic-escape-in.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ x <- ' 2' # there is a tab emebbed (created with writeLines("x <- '\t2'"))
3434
x <- '\001'
3535
'\x01'
3636

37-
"\01"
38-
'\01'
37+
"\001"
38+
'\001'
3939

4040
#' things
4141
#'

tests/testthat/escaping/basic-escape-in_tree

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/escaping/basic-escape-out.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ x <- " 2" # there is a tab emebbed (created with writeLines("x <- '\t2'"))
3434
x <- "\001"
3535
"\x01"
3636

37-
"\0"
38-
"\0"
37+
"\001"
38+
"\001"
3939

4040
#' things
4141
#'

0 commit comments

Comments
 (0)