Skip to content

Commit 23b3cc6

Browse files
committed
Updated the import of the PyTest jump decorator.
1 parent e45cac1 commit 23b3cc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_output.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Test output of the various forms of tabular data."""
2-
import pytest
2+
from pytest import mark
33

44
import tabulate as tabulate_module
55
from common import assert_equal, raises, skip, check_warnings
@@ -2646,7 +2646,7 @@ def test_intfmt_with_string_as_integer():
26462646
assert_equal(expected, result)
26472647

26482648

2649-
@pytest.mark.skip(reason="It detects all values as floats but there are strings and integers.")
2649+
@mark.skip(reason="It detects all values as floats but there are strings and integers.")
26502650
def test_intfmt_with_string_with_floats():
26512651
"Output: integer format"
26522652
result = tabulate([[82000.38], ["1500.47"], ["2463"], [92165]], intfmt=",", tablefmt="plain")

0 commit comments

Comments
 (0)