Skip to content

Commit

Permalink
update spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvolo committed Mar 13, 2024
1 parent 36c459c commit 7df3e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/handlers/newflow/educator_signup/signup_form_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ module EducatorSignup
expect { handler_call }.to change { User.where(state: 'unverified', role: :instructor).count }
end

it 'sets the new user\'s faculty status to pending_faculty' do
expect { handler_call }.to change { User.where(faculty_status: :pending_faculty).count }
it 'sets the new user\'s faculty status to incomplete_signup' do
expect { handler_call }.to change { User.where(faculty_status: :incomplete_signup).count }
end

it 'creates an authentication with provider = identity' do
Expand Down

0 comments on commit 7df3e48

Please sign in to comment.