@@ -23,7 +23,7 @@ def teardown_class(self):
23
23
self .index .delete ()
24
24
25
25
def test_get_searchable_attributes (self ):
26
- """Tests a call to get searchableAttributes on an empty and populated index"""
26
+ """Tests getting the searchable attributes on an empty and populated index"""
27
27
response = self .index .get_searchable_attributes ()
28
28
assert isinstance (response , object )
29
29
assert response == []
@@ -35,7 +35,7 @@ def test_get_searchable_attributes(self):
35
35
36
36
37
37
def test_update_searchable_attributes (self ):
38
- """Tests the modification of searchableAttributes """
38
+ """Tests updating the searchable attributes """
39
39
response = self .index .update_searchable_attributes (self .new_searchable_attributes )
40
40
assert isinstance (response , object )
41
41
assert 'updateId' in response
@@ -45,7 +45,7 @@ def test_update_searchable_attributes(self):
45
45
assert attribute in response
46
46
47
47
def test_reset_searchable_attributes (self ):
48
- """Tests the reset of searchableAttributes """
48
+ """Tests reseting searchable attributes """
49
49
response = self .index .reset_searchable_attributes ()
50
50
assert isinstance (response , object )
51
51
assert 'updateId' in response
0 commit comments