summaryrefslogtreecommitdiffstats
path: root/tests/test_pgexecute.py
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2016-05-17 12:04:30 -0700
committerAmjith Ramanujam <amjith.r@gmail.com>2016-05-17 12:04:30 -0700
commit0524e0adbfc0a77a07d9447dd901e23c50dc87cd (patch)
tree1a62c7a4652cccf5c23cbbe65b9e511787aa7aea /tests/test_pgexecute.py
parent69ee125bf166fc9e24f5e975d69947564b778c8d (diff)
Disable the test for unicode notices.
Diffstat (limited to 'tests/test_pgexecute.py')
-rw-r--r--tests/test_pgexecute.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_pgexecute.py b/tests/test_pgexecute.py
index b09e5ca4..9d04da85 100644
--- a/tests/test_pgexecute.py
+++ b/tests/test_pgexecute.py
@@ -267,8 +267,8 @@ def test_on_error_stop(executor, exception_formatter):
exception_formatter=exception_formatter))
assert len(result) == 2
-@dbtest
-def test_unicode_notices(executor):
- sql = "DO language plpgsql $$ BEGIN RAISE NOTICE '有人更改'; END $$;"
- result = list(executor.run(sql))
- assert result[0][0] == u'NOTICE: 有人更改\n'
+# @dbtest
+# def test_unicode_notices(executor):
+# sql = "DO language plpgsql $$ BEGIN RAISE NOTICE '有人更改'; END $$;"
+# result = list(executor.run(sql))
+# assert result[0][0] == u'NOTICE: 有人更改\n'