Skip to content

Commit

Permalink
remove takebuf_string and raise Compat version
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Feb 20, 2017
1 parent f46e963 commit 7cfe5ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
julia 0.5-
JSON
URIParser
Compat 0.7.9
Compat 0.9.5
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ end"""
Pkg.add("Example")
io = IOBuffer()
f = PkgDev.freeable(io)
@test !(any(f .== "Example") || contains(takebuf_string(io), "Example"))
@test !(any(f .== "Example") || contains(String(take!(io)), "Example"))
Pkg.checkout("Example")
f = PkgDev.freeable(io)
@test any(f .== "Example") || contains(takebuf_string(io), "Example")
@test any(f .== "Example") || contains(String(take!(io)), "Example")
end

@testset "testing package registration" begin
Expand Down

0 comments on commit 7cfe5ba

Please sign in to comment.