diff --git a/magnum/tests/functional/api/v1/test_bay.py b/magnum/tests/functional/api/v1/test_bay.py index 131af1e2f8..88e1e5e217 100644 --- a/magnum/tests/functional/api/v1/test_bay.py +++ b/magnum/tests/functional/api/v1/test_bay.py @@ -134,16 +134,6 @@ class BayTest(base.BaseMagnumTest): exceptions.BadRequest, self.bay_client.post_bay, gen_model) - @testtools.testcase.attr('negative') - def test_create_bay_with_missing_name(self): - self.skipTest('This is currently an error! ' - 'Should throw a 400 instead of a 500') - gen_model = datagen.valid_bay_data(baymodel_id=self.baymodel.uuid, - name=None) - self.assertRaises( - exceptions.BadRequest, - self.bay_client.post_bay, gen_model) - @testtools.testcase.attr('negative') def test_update_bay_name_for_existing_bay(self): first_model = datagen.valid_bay_data(baymodel_id=self.baymodel.uuid,