From 814f12bb39437717a3df3091c1f4d8d0056c35f8 Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Wed, 29 Sep 2010 12:21:50 +0000 Subject: [PATCH] Disabled ``check_tid_ordering_w_commit`` test from BasicStorage, as it uses invalid test data. --- CHANGES.txt | 3 +++ src/tempstorage/tests/testTemporaryStorage.py | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index b841e32..3b28da1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,6 +4,9 @@ Changelog 2.12.1 - unreleased ------------------- +- Disabled ``check_tid_ordering_w_commit`` test from BasicStorage, as it uses + invalid test data. + 2.12.0 - 2010-09-25 ------------------- diff --git a/src/tempstorage/tests/testTemporaryStorage.py b/src/tempstorage/tests/testTemporaryStorage.py index ef8b9dd..055a254 100644 --- a/src/tempstorage/tests/testTemporaryStorage.py +++ b/src/tempstorage/tests/testTemporaryStorage.py @@ -36,6 +36,12 @@ def open(self, **kwargs): from tempstorage.TemporaryStorage import TemporaryStorage self._storage = TemporaryStorage('foo') + def check_tid_ordering_w_commit(self): + # The test uses invalid test data of 'x'. The normal storages + # don't load the actual data and thus pass, but the tempstorage + # will always try to load the data and fail + pass + class TemporaryStorageTests(unittest.TestCase):