We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da9b231 commit 6a6571cCopy full SHA for 6a6571c
Project.toml
@@ -1,7 +1,7 @@
1
name = "InputBuffers"
2
uuid = "0c81fc1b-5583-44fc-8770-48be1e1cca08"
3
authors = ["nhz2 <[email protected]> and contributors"]
4
-version = "1.0.0"
+version = "1.0.1"
5
6
[compat]
7
julia = "1.6"
test/runtests.jl
@@ -96,11 +96,7 @@ using CRC32: crc32
96
@test read(io, String) == ""
97
@test read(io2, String) == ""
98
seek(io2, 0)
99
- truncate(io2, io2.size - 2)
100
- @test read(io2, String) == "goodnightmoonhelloworld"
101
- seek(io2, 0)
102
- write(io2, io2)
103
- @test read(io2, String) == ""
+ @test read(io2, String) == "goodnightmoonhelloworldω"
104
end
105
106
@test flush(InputBuffer(UInt8[])) === nothing # should be a no-op
0 commit comments