diff options
author | Andrew Ammerlaan <andrewammerlaan@riseup.net> | 2020-10-11 13:13:14 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-16 16:26:18 +0300 |
commit | dbc464b7fc5f2cfdcce55e03ed68f66a80abc313 (patch) | |
tree | dbf0ef3f1bdbdc725cb161af391749dc962f698a /dev-python/python-jsonrpc-server/files | |
parent | www-apps/kibana-bin: bump to 7.9.2 (diff) | |
download | gentoo-dbc464b7fc5f2cfdcce55e03ed68f66a80abc313.tar.gz gentoo-dbc464b7fc5f2cfdcce55e03ed68f66a80abc313.tar.bz2 gentoo-dbc464b7fc5f2cfdcce55e03ed68f66a80abc313.zip |
dev-python/python-jsonrpc-server: fix bug in tests with ujson>3
Closes: https://bugs.gentoo.org/715290
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/python-jsonrpc-server/files')
-rw-r--r-- | dev-python/python-jsonrpc-server/files/python-jsonrpc-server-0.4.0-fix-test-with-ujson-3-and-up.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-python/python-jsonrpc-server/files/python-jsonrpc-server-0.4.0-fix-test-with-ujson-3-and-up.patch b/dev-python/python-jsonrpc-server/files/python-jsonrpc-server-0.4.0-fix-test-with-ujson-3-and-up.patch new file mode 100644 index 000000000000..b639d69bbd04 --- /dev/null +++ b/dev-python/python-jsonrpc-server/files/python-jsonrpc-server-0.4.0-fix-test-with-ujson-3-and-up.patch @@ -0,0 +1,12 @@ +diff --git a/test/test_streams.py b/test/test_streams.py +index 6985aec..9e64489 100644 +--- a/test/test_streams.py ++++ b/test/test_streams.py +@@ -119,6 +119,7 @@ def test_writer_bad_message(wfile, writer): + hour=1, + minute=1, + second=1, ++ tzinfo=datetime.timezone.utc + )) + + assert wfile.getvalue() in [ |