Skip to content

Commit

Permalink
chore(test): fix test for auctions to use temporary error
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed May 13, 2024
1 parent 65bc94f commit ef8a5ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contract/spec/arns_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ describe("arns", function()
local status, result =
pcall(arns.buyRecord, "permabuy", "permabuy", nil, "Bob", timestamp, testProcessId)
assert.is_false(status)
assert.match("Name must be auctioned", result)
-- TODO: this will change to `Name must be auctioned` when auctions are impelmented
assert.match("Name not available for purchase", result)
end
)

Expand Down

0 comments on commit ef8a5ac

Please sign in to comment.