Skip to content
New issue

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

adapt to new String.join - now accepting Iterator #6

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ponycc/test/test_command.pony
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ class val TestCommand[T: TestCommandType val]
pieces(0)?,
try pieces(1)?.usize()? else 0 end)?
end
_h.assert_eq[String](String.join(check.lines), ast.string())

_h.assert_eq[String](String.join(check.lines.values()), ast.string())
else
_h.fail("Check failed to walk path: " + check.message)
_h.log("The crumb that failed parse and/or lookup was: " + last_crumb)
Expand Down