Skip to content

Commit b80c695

Browse files
committed
Remove $ prefix from is_true
1 parent 386eaca commit b80c695

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/security/130_user_profile.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ teardown:
3737
security.get_user_profile:
3838
uid: "$profile_uid"
3939
- set: { profiles.0: profile }
40-
- is_true: "$profile.enabled"
40+
- is_true: "profile.enabled"
4141

4242
# disable the profile
4343
- do:
@@ -47,7 +47,7 @@ teardown:
4747
security.get_user_profile:
4848
uid: "$profile_uid"
4949
- set: { profiles.0: profile }
50-
- is_false: "$profile.enabled"
50+
- is_false: "profile.enabled"
5151

5252
# enable again
5353
- do:
@@ -57,7 +57,7 @@ teardown:
5757
security.get_user_profile:
5858
uid: "$profile_uid"
5959
- set: { profiles.0: profile }
60-
- is_true: "$profile.enabled"
60+
- is_true: "profile.enabled"
6161

6262
- do:
6363
security.has_privileges_user_profile:

0 commit comments

Comments
 (0)