From c51c7c180a5b0b9bb2272c05a5bf090ed293c941 Mon Sep 17 00:00:00 2001 From: geng chc <578043796@qq.com> Date: Wed, 25 May 2016 14:43:06 +0800 Subject: [PATCH] Correct spelling mistake spelling mistake in api/configurations.py at line 253. The word "invalid" is misspelt. Closes-Bug: #1585478 Change-Id: I84fbee9b947509108348ce312a148e0c49afbd28 --- trove/tests/api/configurations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trove/tests/api/configurations.py b/trove/tests/api/configurations.py index 4b3c13cf94..b5f1c1a7e4 100644 --- a/trove/tests/api/configurations.py +++ b/trove/tests/api/configurations.py @@ -250,7 +250,7 @@ class CreateConfigurations(ConfigurationsTestBase): @test def test_configurations_create_invalid_value_type(self): - """Test create configuration with invalild value type.""" + """Test create configuration with invalid value type.""" values = '{"key_buffer_size": "this is a string not int"}' assert_unprocessable(instance_info.dbaas.configurations.create, CONFIG_NAME, values, CONFIG_DESC)