From cac3e7a7f4b21a64e40e6ed22fbbdb9f2b0291c4 Mon Sep 17 00:00:00 2001 From: Haoxuan Guo Date: Fri, 1 Sep 2023 19:00:42 +0800 Subject: [PATCH] test(subscript): add test for upperscript 'm' --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 0498f8b..72e79f8 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -16,7 +16,7 @@ using Test @test "C" |> zahl === 6 # subscript - @test "0123456789" |> super === "⁰¹²³⁴⁵⁶⁷⁸⁹" + @test "0123456789m" |> super === "⁰¹²³⁴⁵⁶⁷⁸⁹ᵐ" @test "0123456789" |> sub === "₀₁₂₃₄₅₆₇₈₉" @test "⁰¹²³⁴⁵⁶⁷⁸⁹₀₁₂₃₄₅₆₇₈₉" |> recover === "01234567890123456789"