From 9fcf657889729e23587ec12a1c97c8d0cd43d992 Mon Sep 17 00:00:00 2001 From: JB Vasseur Date: Fri, 12 Oct 2018 00:25:52 +0900 Subject: [PATCH] Differentiate test application values --- spec/requests/api/applications_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/api/applications_spec.rb b/spec/requests/api/applications_spec.rb index 77b4c5ecbba..5c383317b7e 100644 --- a/spec/requests/api/applications_spec.rb +++ b/spec/requests/api/applications_spec.rb @@ -5,7 +5,7 @@ describe API::Applications, :api do let(:admin_user) { create(:user, admin: true) } let(:user) { create(:user, admin: false) } - let!(:application) { create(:application, name: 'application_name', redirect_uri: 'http://application.url', scopes: '') } + let!(:application) { create(:application, name: 'another_application', redirect_uri: 'http://other_application.url', scopes: '') } describe 'POST /applications' do context 'authenticated and authorized user' do