Always use kwargs

This commit is contained in:
Honza Král
2014-01-20 18:54:19 +01:00
parent d8a84b6045
commit 8c670793e6
+2 -2
View File
@@ -53,8 +53,8 @@ class ElasticTestCase(TestCase):
self.client = get_client()
def tearDown(self):
self.client.indices.delete('*')
self.client.indices.delete_template('*', ignore=404)
self.client.indices.delete(index='*')
self.client.indices.delete_template(name='*', ignore=404)
@property
def es_version(self):