Skip to content
Merged
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
5 changes: 3 additions & 2 deletions pygmt/tests/test_clib.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,11 @@ def test_call_module_empty_argument():
"""
call_module should work if an empty string or an empty list is passed as argument.
"""
Figure()
with clib.Session() as lib:
lib.call_module("defaults", "")
lib.call_module("logo", "")
with clib.Session() as lib:
lib.call_module("defaults", [])
lib.call_module("logo", [])


def test_call_module_invalid_argument_type():
Expand Down