diff --git a/integration/test_profiles.py b/integration/test_profiles.py index 49d287f2..d2cfd405 100644 --- a/integration/test_profiles.py +++ b/integration/test_profiles.py @@ -40,11 +40,13 @@ def test_create(self): """A profile is created.""" name = "an-profile" config = {"limits.memory": "1GB"} - profile = self.client.profiles.create(name, config) + description = "Memory limiting profile" + profile = self.client.profiles.create(name, config, description=description) self.addCleanup(self.delete_profile, name) self.assertEqual(name, profile.name) self.assertEqual(config, profile.config) + self.assertEqual(description, profile.description) class TestProfile(IntegrationTestCase):