fix bad test title

This commit is contained in:
Karol Wypchlo 2022-04-08 13:20:48 +02:00
parent 4e64ddd798
commit a0693ac6b6
No known key found for this signature in database
GPG Key ID: B515DE9EEBE241E1
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ describe("getenv", function()
assert.equals(utils.getenv("foo", "integer"), 1)
end)
it("should parse '-1' string as 1", function()
it("should parse '-1' string as -1", function()
os.getenv.on_call_with("foo").returns("-1")
assert.equals(utils.getenv("foo", "integer"), -1)