diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-11-25 00:52:49 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-11-25 00:52:49 +0000 |
commit | 143e603d4eb112aacccdbfd2a8e34345367dd7f1 (patch) | |
tree | 6b00380f307ba4183b1f3212c063e808d5db4054 | |
parent | c2b482693d92b22629057986b98da9433c8fa9a1 (diff) | |
download | nextcloud-server-143e603d4eb112aacccdbfd2a8e34345367dd7f1.tar.gz nextcloud-server-143e603d4eb112aacccdbfd2a8e34345367dd7f1.zip |
[stable25] Fix theming tests
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | tests/acceptance/features/app-theming.feature | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/acceptance/features/app-theming.feature b/tests/acceptance/features/app-theming.feature index 7a660ed52da..7b734f7f318 100644 --- a/tests/acceptance/features/app-theming.feature +++ b/tests/acceptance/features/app-theming.feature @@ -9,11 +9,11 @@ Feature: app-theming # The "eventually" part is not really needed here, as the colour is not # being animated at this point, but there is no need to create a specific # step just for this. - And I see that the primary color is eventually "#00639a" + And I see that the primary color is eventually "#006aa3" And I see that the non-plain background color variable is eventually "#0082c9" When I set the "Color" parameter in the Theming app to "#C9C9C9" Then I see that the parameters in the Theming app are eventually saved - And I see that the primary color is eventually "#00639a" + And I see that the primary color is eventually "#006aa3" And I see that the non-plain background color variable is eventually "#C9C9C9" Scenario: resetting the color updates the primary color @@ -23,9 +23,9 @@ Feature: app-theming And I see that the color selector in the Theming app has loaded And I set the "Color" parameter in the Theming app to "#C9C9C9" And I see that the parameters in the Theming app are eventually saved - And I see that the primary color is eventually "#00639a" + And I see that the primary color is eventually "#006aa3" And I see that the non-plain background color variable is eventually "#C9C9C9" When I reset the "Color" parameter in the Theming app to its default value Then I see that the parameters in the Theming app are eventually saved - And I see that the primary color is eventually "#00639a" + And I see that the primary color is eventually "#006aa3" And I see that the non-plain background color variable is eventually "#0082c9" |