We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad6eb9 commit d88accdCopy full SHA for d88accd
pygmt/tests/test_clib_virtualfile_from_vectors.py
@@ -76,7 +76,7 @@ def test_virtualfile_from_vectors_one_string_or_object_column(array_func, dtype)
76
y = np.arange(size, size * 2, 1, dtype=np.int32)
77
strings = array_func(["a", "bc", "defg", "hijklmn", "opqrst"], **dtype)
78
with clib.Session() as lib:
79
- with lib.virtualfile_from_vectors(x, y, strings) as vfile:
+ with lib.virtualfile_from_vectors(vectors=(x, y, strings)) as vfile:
80
with GMTTempFile() as outfile:
81
lib.call_module("convert", [vfile, f"->{outfile.name}"])
82
output = outfile.read(keep_tabs=True)
0 commit comments