Skip to content

Commit

Permalink
Merge from remote, fix test with testDir
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Chirico committed Feb 9, 2018
2 parents 2b7e78f + 74f7474 commit c40684b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions inst/tests/tests.Rraw
Original file line number Diff line number Diff line change
Expand Up @@ -11603,8 +11603,9 @@ test(1873.5, DT[0:5], DT)
## the original string representation should be kept
DT = data.table(A=rep("True", 2200), B="FALSE", C='0')
DT[111, LETTERS[1:3] := .("here", "be", "dragons")]
fwrite(DT, f<-tempfile())
test(1873.6, fread(f, verbose=TRUE), DT,
outf = testDir('test1873.6.csv')
fwrite(DT, outf)
test(1873.6, fread(outf, verbose=TRUE), DT,
output=paste("Column 1.*bumped from 'bool8' to 'string'",
"Column 2.*bumped from 'bool8' to 'string'",
"Column 3.*bumped from 'bool8' to 'string'",
Expand Down

0 comments on commit c40684b

Please sign in to comment.