@@ -60,34 +60,34 @@ public function get_display_status_returns_the_percentage_message_if_it_is_enabl
60
60
/**
61
61
* @test
62
62
*/
63
- public function get_display_status_returns_the_whitelist_message_if_it_is_enabled_for_groups ()
63
+ public function get_display_status_returns_the_allowlist_message_if_it_is_enabled_for_groups ()
64
64
{
65
65
$ feature = new Feature ('name ' , '0||d ' );
66
66
$ presenter = new FeaturePresenter ($ feature );
67
67
68
- $ this ->assertEquals (FeaturePresenter::$ statuses ['whitelist ' ], $ presenter ->getDisplayStatus ());
68
+ $ this ->assertEquals (FeaturePresenter::$ statuses ['allowlist ' ], $ presenter ->getDisplayStatus ());
69
69
}
70
70
71
71
/**
72
72
* @test
73
73
*/
74
- public function get_display_status_returns_the_whitelist_message_if_it_is_enabled_for_users ()
74
+ public function get_display_status_returns_the_allowlist_message_if_it_is_enabled_for_users ()
75
75
{
76
76
$ feature = new Feature ('name ' , '0|a| ' );
77
77
$ presenter = new FeaturePresenter ($ feature );
78
78
79
- $ this ->assertEquals (FeaturePresenter::$ statuses ['whitelist ' ], $ presenter ->getDisplayStatus ());
79
+ $ this ->assertEquals (FeaturePresenter::$ statuses ['allowlist ' ], $ presenter ->getDisplayStatus ());
80
80
}
81
81
82
82
/**
83
83
* @test
84
84
*/
85
- public function get_display_status_returns_the_whitelist_message_if_it_is_enabled_for_users_and_groups ()
85
+ public function get_display_status_returns_the_allowlist_message_if_it_is_enabled_for_users_and_groups ()
86
86
{
87
87
$ feature = new Feature ('name ' , '0|a|d ' );
88
88
$ presenter = new FeaturePresenter ($ feature );
89
89
90
- $ this ->assertEquals (FeaturePresenter::$ statuses ['whitelist ' ], $ presenter ->getDisplayStatus ());
90
+ $ this ->assertEquals (FeaturePresenter::$ statuses ['allowlist ' ], $ presenter ->getDisplayStatus ());
91
91
}
92
92
93
93
/**
0 commit comments