Skip to content

Commit

Permalink
Merge 6c5a0f6 into 7224ca9
Browse files Browse the repository at this point in the history
  • Loading branch information
rathishcholarajan committed Mar 21, 2022
2 parents 7224ca9 + 6c5a0f6 commit fdd4966
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/test_ibm_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,17 +380,17 @@ def test_remote_backend_properties_filter_date(self):
else:
self.assertEqual(properties, None)

def test_provider_backends(self):
"""Test provider_backends have correct attributes."""
provider_backends = {
def test_provider_backend(self):
"""Test provider backend has correct attributes."""
backend_attributes = {
back
for back in dir(self.provider.backend)
if isinstance(getattr(self.provider.backend, back), IBMBackend)
}
backends = {
back.name().lower() for back in self.provider.backend._backends.values()
}
self.assertEqual(provider_backends, backends)
self.assertEqual(backend_attributes, backends)

def test_provider_services(self):
"""Test provider services."""
Expand Down

0 comments on commit fdd4966

Please sign in to comment.