Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeach-aws committed Apr 16, 2024
1 parent df50f40 commit 4173a94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/unit_tests/braket/reservations/test_reservations.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@

@pytest.fixture
def aws_device():
device = AwsDevice("device_arn_example")
return device
mock_device = MagicMock(name="AwsDevice")
mock_device.device_arn = "device_arn_example"
return mock_device


def test_initialization_with_string():
Expand Down

0 comments on commit 4173a94

Please sign in to comment.