From d0c884c143b931c50ab8ace59a2e1c5e80944fdb Mon Sep 17 00:00:00 2001 From: Phil Bridges Date: Thu, 23 Jun 2016 17:38:03 -0500 Subject: [PATCH] Update copied Swift tests for 2.5.0.0 release There were a few tests that were out of date compared to upstream Swift, so I pulled just enough to make everything be green. I have no idea why we have our own copy of these tests to maintain, but we do. Maybe we should look into getting rid of them and just linking straight to whatever Swift tests we have? Change-Id: I1eb7d891fa54c8627b8aac93bfefbd413df8529d --- test/functional/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/functional/tests.py b/test/functional/tests.py index c68a33b..f9799d0 100644 --- a/test/functional/tests.py +++ b/test/functional/tests.py @@ -157,6 +157,8 @@ class TestAccount(Base): self.env.account.conn.storage_url = was_url def testPUT(self): + if load_constraint('allow_account_management'): + raise SkipTest("Allow account management is enabled") self.env.account.conn.make_request('PUT') self.assert_status([403, 405])