diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2025-06-16 21:21:24 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2025-06-16 21:21:24 +0000 |
commit | eb1fcac5e44c468c1fec5fc116b9132a4da77a21 (patch) | |
tree | a3c69afa38dce872da181044b582abad60199309 | |
parent | 826460c9bc51cb20adf380e4809b6c5dbde0688b (diff) | |
download | redmine-eb1fcac5e44c468c1fec5fc116b9132a4da77a21.tar.gz redmine-eb1fcac5e44c468c1fec5fc116b9132a4da77a21.zip |
Improve text assertion (#24808).
git-svn-id: https://svn.redmine.org/redmine/trunk@23839 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/system/oauth_provider_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/oauth_provider_test.rb b/test/system/oauth_provider_test.rb index 897af72c0..a80963096 100644 --- a/test/system/oauth_provider_test.rb +++ b/test/system/oauth_provider_test.rb @@ -31,9 +31,9 @@ class OauthProviderSystemTest < ApplicationSystemTestCase check 'View Issues' click_button 'Create' - end - assert_text "Application created" + assert_text "Application created." + end assert app = Doorkeeper::Application.find_by_name('Oauth Test') |