Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name = "TestExtras"
uuid = "5ed8adda-3752-4e41-b88a-e8b09835ee3a"
authors = ["Jutho Haegeman <[email protected]> and contributors"]
version = "0.1.0"
version = "0.1.1"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Expand Down
2 changes: 1 addition & 1 deletion src/constinferred.jl
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module ConstInferred
fundefbody = Expr(:block, quoteargs..., isempty(kwargs) ?
Expr(:call, f, rightargs...) :
Expr(:call, f, Expr(:parameters, rightkwargs...), rightargs...))
fundefex = Expr(:quote, Expr(:(=), fundefhead, fundefbody))
fundefex = esc(Expr(:quote, Expr(:(=), fundefhead, fundefbody)))

inftypes = gensym()
rettype = gensym()
Expand Down
3 changes: 2 additions & 1 deletion src/timedtest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ export @timedtestset, TimedTestSet

import Test
import Test: AbstractTestSet, DefaultTestSet, Broken, Fail, Error, Pass, TestSetException
import Test: record, finish, print_test_errors, print_test_results, print_counts, myid,
import Test: record, finish, print_test_errors, print_test_results, print_counts,
get_testset, get_testset_depth,get_test_counts, get_alignment, filter_errors
import Distributed: myid


macro timedtestset(ex...)
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ end
@test_nowarn a = 1
@test a === 1
end
end
end