Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
chore: fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
miwurster committed Nov 16, 2023
1 parent 647963a commit 89147cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/unit/planqk/client_mocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{"granularity": "shot", "currency": "USD", "value": 0.01},
{"granularity": "job", "currency": "USD", "value": 1.00}
],
"updated_at": "2023-07-11T10:00:00",
"updated_at": "2023-07-11",
"avg_queue_time": 10,
"unknown_attr": "yes",
}
Expand Down Expand Up @@ -89,7 +89,7 @@
{"granularity": "job", "currency": "EUR", "value": 0.02},
{"granularity": "shot", "currency": "EUR", "value": 2.00}
],
"updated_at": "2023-07-12T12:00:00",
"updated_at": "2023-07-12",
"avg_queue_time": 20
}

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/planqk/test_planqk_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from tests.unit.planqk.client_mocks import rigetti_mock, oqc_lucy_mock, job_mock, job_result_mock


class TestPlanqkClient(unittest.TestCase):
class PlanqkClientTestSuite(unittest.TestCase):

@classmethod
def setUpClass(cls):
Expand Down

0 comments on commit 89147cd

Please sign in to comment.