aboutsummaryrefslogtreecommitdiff
path: root/spec/04-term_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/04-term_spec.lua')
-rw-r--r--spec/04-term_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/04-term_spec.lua b/spec/04-term_spec.lua
index 84b4731..d5b4eee 100644
--- a/spec/04-term_spec.lua
+++ b/spec/04-term_spec.lua
@@ -500,9 +500,9 @@ describe("Terminal:", function()
500 describe("termsize() #manual", function() 500 describe("termsize() #manual", function()
501 501
502 it("gets the terminal size", function() 502 it("gets the terminal size", function()
503 local w, h = system.termsize() 503 local rows, columns = system.termsize()
504 assert.is_number(w) 504 assert.is_number(rows)
505 assert.is_number(h) 505 assert.is_number(columns)
506 end) 506 end)
507 507
508 end) 508 end)