Skip to content

Commit

Permalink
fix theme import (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
ami-descope authored May 1, 2024
1 parent 7dd8dad commit 26501c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/ruby-on-rails-api/descope/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../../../..
specs:
descope (1.0.5)
descope (1.0.6)
addressable (~> 2.8)
jwt (~> 2.7)
rest-client (~> 2.1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
it 'should import the current project theme' do
export_theme = @client.export_theme
export_theme_current_version = export_theme['theme']['version']
imported_theme = @client.import_theme(export_theme)
imported_theme = @client.import_theme(export_theme['theme'])
expect(imported_theme['theme']['version']).to be(export_theme_current_version + 1)
end
end

0 comments on commit 26501c3

Please sign in to comment.