summaryrefslogtreecommitdiff
path: root/tests-functional-py3.txt
diff options
context:
space:
mode:
authorChris Dent <cdent@anticdent.org>2017-01-17 21:10:45 +0000
committerChris Dent <cdent@anticdent.org>2017-01-17 21:10:45 +0000
commit26db00344f0322cc335e7ef459791e564f7182f7 (patch)
tree95d4eda2ce4b4491b29060b0d726aa9d531f2240 /tests-functional-py3.txt
parent1a487f35d0f7d3538a141907ac747f47621fe83c (diff)
downloadnova-26db00344f0322cc335e7ef459791e564f7182f7.tar.gz
Remove invalid URL in gabbi tests
The use of a literal snowman in a URL is an invalid URL. In Python 3 the url parsing code used by gabbi will not accept this URL and correctly rejects it. Python 2 is less strict and passes it on (presumably encoding it somewhere in the stack). Python 3's behavior is correct and the fact that the test ever worked was an artifact of Python 2's bad behavior. The test immediately following the removed test is testing the correct and legitimate HTTP behavior, so it is best to just remove the bad one. By doing so all functional tests pass under python3 so the test-functional-py3.txt has been made empty, with a comment. This was done, instead of removing it, to signal the state of affairs. Change-Id: If40f5093c65491dcfc225dffd95c6dc1318a0f99
Diffstat (limited to 'tests-functional-py3.txt')
-rw-r--r--tests-functional-py3.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests-functional-py3.txt b/tests-functional-py3.txt
index f7854cd907..1a22c8d56f 100644
--- a/tests-functional-py3.txt
+++ b/tests-functional-py3.txt
@@ -1,4 +1 @@
-##############################################################################
-# NOTE(dims): The following test looks like a gabbi failure under python 3.5
-##############################################################################
-nova.tests.functional.api.openstack.placement.test_placement_api.unicode_get_a_raw_snowman_unicode.test_request
+# All functional tests currently work with python 3.5.