You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With ruby 1.8.7 (2012-06-29 patchlevel 370) [x86_64-linux] I'm getting a few test failures. These all looks like innocent manifestations of the now-random hash ordering in newer patch levels of ruby 1.8.7.
1) OAuth::Provider::Authorizer Authorization code should issue code should include state
Failure/Error: @authorizer.redirect_uri.should == "http://mysite.com/callback?code=secret%20auth%20code&state=customer%20id"
expected: "http://mysite.com/callback?code=secret%20auth%20code&state=customer%20id"
got: "http://mysite.com/callback?state=customer%20id&code=secret%20auth%20code" (using ==)
# ./spec/oauth/provider/authorizer_spec.rb:49
2) OAuth::Provider::Authorizer user does not authorize should send error with state and query params in callback
Failure/Error: @authorizer.redirect_uri.should == "http://mysite.com/callback?this=one&error=access_denied&state=my%20customer"
expected: "http://mysite.com/callback?this=one&error=access_denied&state=my%20customer"
got: "http://mysite.com/callback?this=one&state=my%20customer&error=access_denied" (using ==)
# ./spec/oauth/provider/authorizer_spec.rb:92
3) OAuth::Provider::Authorizer user does not authorize should send error with state and query params in callback
Failure/Error: @authorizer.redirect_uri.should == "http://mysite.com/callback?this=one#error=access_denied&state=my%20customer"
expected: "http://mysite.com/callback?this=one#error=access_denied&state=my%20customer"
got: "http://mysite.com/callback?this=one#state=my%20customer&error=access_denied" (using ==)
# ./spec/oauth/provider/authorizer_spec.rb:182
The text was updated successfully, but these errors were encountered:
With ruby 1.8.7 (2012-06-29 patchlevel 370) [x86_64-linux] I'm getting a few test failures. These all looks like innocent manifestations of the now-random hash ordering in newer patch levels of ruby 1.8.7.
The text was updated successfully, but these errors were encountered: