diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-26 09:44:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-26 09:48:28 -0400 |
commit | 3ab1c50f23c47721bd2ccb025c0f0a8b3d2b16c9 (patch) | |
tree | aeca089b8c1716cbce2a80a653f9c31bc6b16c9c /tests/test_process.py | |
parent | 86508459edcf8f85a394413aec4cf909e709981f (diff) | |
download | python-coveragepy-git-3ab1c50f23c47721bd2ccb025c0f0a8b3d2b16c9.tar.gz |
Tests of the schema checking
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 49919b0f..1ac18ffe 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -516,7 +516,7 @@ class ProcessTest(CoverageTest): if not hasattr(os, 'fork'): self.skipTest("Can't test os.fork since it doesn't exist.") # See https://nedbatchelder.com/blog/201808/sqlite_data_storage_for_coveragepy.html - self.skip_unless_data_storage_is_json() + self.skip_unless_data_storage_is("json") self.make_file("fork.py", """\ import os @@ -655,7 +655,7 @@ class ProcessTest(CoverageTest): if env.PYPY and env.PY3 and env.PYPYVERSION[:3] == (5, 10, 0): # pragma: obscure # https://bitbucket.org/pypy/pypy/issues/2729/pypy3-510-incorrectly-decodes-astral-plane self.skipTest("Avoid incorrect decoding astral plane JSON chars") - self.skip_unless_data_storage_is_json() + self.skip_unless_data_storage_is("json") self.make_file(".coveragerc", """\ [run] |