Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wildart committed May 30, 2022
1 parent 75c3b98 commit f8ebecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/statmodels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ ct = CoefTable(m, ["Estimate", "Stderror", "df", "p"], [], 4)

ct = CoefTable(rand(1,100), ["c$i" for i in 1:100], [], 4)
sct = sprint(show, ct, context=:limit=>false)
@test length(first(split(sct, \'n'))) > 1000
@test length(first(split(sct, '\n'))) > 1000
sct = sprint(show, ct, context=:limit=>true)
@test length(first(split(sct, \'n'))) < 200
@test length(first(split(sct, '\n'))) < 200

@test sprint(show, PValue(1.0)) == "1.0000"
@test sprint(show, PValue(1e-1)) == "0.1000"
Expand Down

0 comments on commit f8ebecd

Please sign in to comment.