@@ -184,7 +184,7 @@ def test_default_legacy(self):
184184 self ._verify_response_future_profile (rf , expected_profile )
185185
186186 def test_default_profile (self ):
187- non_default_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (5 )])
187+ non_default_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (3 )])
188188 cluster = Cluster (execution_profiles = {'non-default' : non_default_profile })
189189 session = Session (cluster , hosts = [])
190190
@@ -218,7 +218,7 @@ def test_statement_params_override_legacy(self):
218218 self ._verify_response_future_profile (rf , expected_profile )
219219
220220 def test_statement_params_override_profile (self ):
221- non_default_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (5 )])
221+ non_default_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (3 )])
222222 cluster = Cluster (execution_profiles = {'non-default' : non_default_profile })
223223 session = Session (cluster , hosts = [])
224224
@@ -284,15 +284,15 @@ def test_no_legacy_with_profile(self):
284284
285285 def test_profile_name_value (self ):
286286
287- internalized_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (5 )])
287+ internalized_profile = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (3 )])
288288 cluster = Cluster (execution_profiles = {'by-name' : internalized_profile })
289289 session = Session (cluster , hosts = [])
290290 self .assertEqual (cluster ._config_mode , _ConfigMode .PROFILES )
291291
292292 rf = session .execute_async ("query" , execution_profile = 'by-name' )
293293 self ._verify_response_future_profile (rf , internalized_profile )
294294
295- by_value = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (5 )])
295+ by_value = ExecutionProfile (RoundRobinPolicy (), * [object () for _ in range (3 )])
296296 rf = session .execute_async ("query" , execution_profile = by_value )
297297 self ._verify_response_future_profile (rf , by_value )
298298
0 commit comments