Skip to content

Commit 1b5fdc5

Browse files
authored
don't use Int in TestRecord (#16)
1 parent ade40da commit 1b5fdc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ParallelTestRunner.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ abstract type AbstractTestRecord end
6767
struct TestRecord <: AbstractTestRecord
6868
test::Any
6969
time::Float64
70-
bytes::Int
70+
bytes::UInt64
7171
gctime::Float64
72-
rss::UInt
72+
rss::UInt64
7373
end
7474

7575
function memory_usage(rec::TestRecord)

0 commit comments

Comments
 (0)