@@ -87,8 +87,8 @@ def test_sections(self, mocked_call_api, mocked_fetch_projects, mocked_fetch_wor
8787 expected_data .append (d )
8888
8989 # Verify the data we expected is returned
90- self .assertEquals (list_section , expected_data )
91- self .assertEquals (len (list_section ), 6 )
90+ self .assertEqual (list_section , expected_data )
91+ self .assertEqual (len (list_section ), 6 )
9292
9393 # Verify the working if 'tasks' stream after caching Project IDs
9494 @mock .patch ("tap_asana.streams.tasks.Tasks.get_objects" )
@@ -140,8 +140,8 @@ def test_tasks(
140140 expected_data = mocked_get_objects .return_value
141141
142142 # Verify the data we expected is returned
143- self .assertEquals (list_task , expected_data )
144- self .assertEquals (len (list_task ), len (expected_data ))
143+ self .assertEqual (list_task , expected_data )
144+ self .assertEqual (len (list_task ), len (expected_data ))
145145
146146 # Verify the working if 'stories' stream after caching Project IDs
147147 @mock .patch ("tap_asana.streams.stories.Stories.get_objects" )
@@ -200,5 +200,5 @@ def test_stories(
200200 expected_data = mocked_get_objects .return_value
201201
202202 # Verify the data we expected is returned
203- self .assertEquals (list_story , expected_data )
204- self .assertEquals (len (list_story ), len (expected_data ))
203+ self .assertEqual (list_story , expected_data )
204+ self .assertEqual (len (list_story ), len (expected_data ))
0 commit comments