Skip to content

Commit

Permalink
Fix error in roman numerals tests (JuliaLang#438)
Browse files Browse the repository at this point in the history
The testset name had a missing `()` around the string interpolation.
  • Loading branch information
niczky12 authored Aug 30, 2021
1 parent 3718ab2 commit 8ea1a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/roman-numerals/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ samples = Dict(
3000 => "MMM"
)

@testset "convert $sample[1] to roman numeral" for sample in samples
@testset "convert $(sample[1]) to roman numeral" for sample in samples
@test to_roman(sample[1]) == sample[2]
end

Expand Down

0 comments on commit 8ea1a08

Please sign in to comment.