Skip to content

Commit

Permalink
fix test (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 authored Sep 12, 2023
1 parent 76603f2 commit dd66153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/test_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def test_default_resilience_settings(self, service):
with Session(service=service, backend=backend) as session:
inst = Estimator(session=session, options=options)
job = inst.run(circ, observables=obs)
self.assertIsNone(job.inputs["resilience_settings"]["noise_factors"])
self.assertIsNone(job.inputs["resilience_settings"]["extrapolator"])
self.assertNotIn("noise_factors", job.inputs["resilience_settings"])
self.assertNotIn("extrapolator", job.inputs["resilience_settings"])

@production_only
@run_integration_test
Expand Down

0 comments on commit dd66153

Please sign in to comment.