Skip to content

Commit

Permalink
Updating tests to include rif
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Jan 2, 2025
1 parent fddde51 commit 71011e3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pip/tests/test_qsharp.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ def test_target_profile_from_str_match_enum_values() -> None:
target_profile = qsharp.TargetProfile.Adaptive_RI
str_value = str(target_profile)
assert qsharp.TargetProfile.from_str(str_value) == target_profile
target_profile = qsharp.TargetProfile.Adaptive_RIF
str_value = str(target_profile)
assert qsharp.TargetProfile.from_str(str_value) == target_profile
target_profile = qsharp.TargetProfile.Unrestricted
str_value = str(target_profile)
assert qsharp.TargetProfile.from_str(str_value) == target_profile
Expand Down

0 comments on commit 71011e3

Please sign in to comment.