We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug In main branch tests should fail for
liquidsoap/tests/language/record.liq
Lines 276 to 282 in e833002
To Reproduce
x = {foo=123} y = {gni="aabb"} a = {...x, gna=3.14, ...y} print(a)
should be
{ foo=123, gna=3.14, gni="aabb" }
Expected behavior
x = {foo=123} y = {gni="aabb"} test.equal({...x, gna=3.14, ...y}, {foo=123, gna=3.14, gni="aabb"}) test.not.equal({...x, gna=3.14, ...y}, {foo=123, bla=3.14, gni="aabb"})
Version details
Install method N/A
Common issues #3519
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
In main branch tests should fail for
liquidsoap/tests/language/record.liq
Lines 276 to 282 in e833002
To Reproduce
should be
Expected behavior
Version details
Install method
N/A
Common issues
#3519
The text was updated successfully, but these errors were encountered: