Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 committed Nov 29, 2023
1 parent 8eaf6c3 commit cb81b29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integrations/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_integrations_view_post_accounting(api_client, mocker, access_token):
assert response['tpa_name'] == post_integration_accounting['tpa_name']
assert response['type'] == post_integration_accounting['type']
assert response['is_active'] == post_integration_accounting['is_active']
assert response['is_beta'] == False
assert response['is_beta'] == True
assert response['disconnected_at'] == None


Expand Down Expand Up @@ -67,7 +67,7 @@ def test_integrations_view_post(api_client, mocker, access_token):
assert response['tpa_name'] == post_integration_accounting['tpa_name']
assert response['type'] == post_integration_accounting['type']
assert response['is_active'] == post_integration_accounting['is_active']
assert response['is_beta'] == False
assert response['is_beta'] == True
assert response['disconnected_at'] == None

response = api_client.post(url, post_integration_hrms)
Expand Down

0 comments on commit cb81b29

Please sign in to comment.