1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Fix test error on LuaJIT due to Lua 5.4 change on double formatting

This commit is contained in:
Étienne Fildadut 2022-01-14 23:49:22 +01:00
parent fdcea38e5e
commit a56e159a7d
2 changed files with 5 additions and 5 deletions

View file

@ -8,4 +8,4 @@
{1/2x} = 0.125
{(1/2)x} = 2
{(1/2)x+.1} = 2.1

View file

@ -9,8 +9,8 @@ _[25]={}
_[24]={}
_[23]={}
_[22]={}
_[21]={text=" = 2",tags=_[31]}
_[20]={text="2.0",tags=_[30]}
_[21]={text=" = 2.1",tags=_[31]}
_[20]={text="2.1",tags=_[30]}
_[19]={text=" = 0.125",tags=_[29]}
_[18]={text="0.125",tags=_[28]}
_[17]={text=" = 2pi",tags=_[27]}
@ -62,10 +62,10 @@ return {_[1],_[2],_[3],_[4],_[5],_[6]}
} } }
{ "text", { {
tags = {},
text = "2.0"
text = "2.1"
}, {
tags = {},
text = " = 2"
text = " = 2.1"
} } }
{ "return" }
]]--