From 4bd0ff6cd7507ae00720226070d1811781c0f9de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjam=C3=ADn=20Albi=C3=B1ana?= Date: Sat, 27 May 2023 19:31:59 +0200 Subject: [PATCH 1/2] Pass test with i686 https://github.com/Knio/dominate/issues/175 --- tests/test_dom_tag.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_dom_tag.py b/tests/test_dom_tag.py index 43ffecb..e12c7a5 100644 --- a/tests/test_dom_tag.py +++ b/tests/test_dom_tag.py @@ -19,6 +19,7 @@ def test___get_thread_context(monkeypatch): assert sut._get_thread_context() in [ -6805948436281256182, # Python >= 3.9 + 1692341442 # i686 3713141171098444831, # Python < 3.9 ] From 51dc2af2302643b84fd4c8201a9971ce272c5d0b Mon Sep 17 00:00:00 2001 From: Tom Flanagan Date: Sun, 4 Jun 2023 22:31:26 -0700 Subject: [PATCH 2/2] Update test_dom_tag.py --- tests/test_dom_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dom_tag.py b/tests/test_dom_tag.py index e12c7a5..7cbe81e 100644 --- a/tests/test_dom_tag.py +++ b/tests/test_dom_tag.py @@ -19,7 +19,7 @@ def test___get_thread_context(monkeypatch): assert sut._get_thread_context() in [ -6805948436281256182, # Python >= 3.9 - 1692341442 # i686 + 1692341442, # i686 3713141171098444831, # Python < 3.9 ]