Skip to content

Commit

Permalink
Updated the import of the PyTest jump decorator.
Browse files Browse the repository at this point in the history
  • Loading branch information
airvzxf committed Apr 14, 2024
1 parent e45cac1 commit 23b3cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_output.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Test output of the various forms of tabular data."""
import pytest
from pytest import mark

import tabulate as tabulate_module
from common import assert_equal, raises, skip, check_warnings
Expand Down Expand Up @@ -2646,7 +2646,7 @@ def test_intfmt_with_string_as_integer():
assert_equal(expected, result)


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

0 comments on commit 23b3cc6

Please sign in to comment.