Skip to content

Commit

Permalink
removed equal checks
Browse files Browse the repository at this point in the history
  • Loading branch information
lfkdev committed Jun 30, 2024
1 parent aab7dab commit fa2f660
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/test_ansible_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@ def test_job_creation_and_retrieval(self):
file_data = json.load(f)
for key in expected_keys:
self.assertIn(key, file_data, f"Expected key '{key}' not found in job file")

# Verify that the job data matches the initial payload
self.assertEqual(file_data['playbook'], payload['playbook'])
self.assertEqual(file_data['inventory'], payload['inventory'])
self.assertEqual(file_data['vars'], payload['vars'])

if __name__ == '__main__':
unittest.main()

0 comments on commit fa2f660

Please sign in to comment.