Re: OpenCSW buildbot failing
Gavin Smith <[email protected]>
| Newsgroups | gmane.comp.tex.texinfo.bugs |
|---|---|
| Message-ID | <aXvWERoYki-s-2r3@orangestar> |
On Thu, Jan 29, 2026 at 12:43:16AM +0100, Patrice Dumas wrote: > Beware that the diffs are to be read in the opposite direction as usual, > for a reason that I do not really understand, I tried to follow the > documentation, but it ended up like that. Therefore there is no > translation. It seems that the natural order of arguments to Test::More::is is the reverse of that to Text::Diff:diff. "is" is called as "is ($got, $expected, $test_name);". For the diff, we want "diff(\$expected, \$got);": i.e., what change is made to the expected result to get the obtained result. I've commited a change to make this swap.