From 9d739a44cd8daab709dc68ab4ac6d9837e5f4315 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Thu, 25 Jun 2015 21:47:00 +0800 Subject: [PATCH] update python test case --- .../python/SwaggerPetstore-python/tests/test_store_api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/client/petstore/python/SwaggerPetstore-python/tests/test_store_api.py b/samples/client/petstore/python/SwaggerPetstore-python/tests/test_store_api.py index 740e2bdc8ad..933a44f237d 100644 --- a/samples/client/petstore/python/SwaggerPetstore-python/tests/test_store_api.py +++ b/samples/client/petstore/python/SwaggerPetstore-python/tests/test_store_api.py @@ -28,4 +28,3 @@ class StoreApiTests(unittest.TestCase): data = self.store_api.get_inventory() self.assertIsNotNone(data) self.assertTrue(isinstance(data, dict)) - self.assertItemsEqual(data.keys(), ['available', 'string', 'sold', 'pending', 'confused', 'active', 'na'])