X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0814b4096c443e2ab3c09baa058aa81a00d205d1..f1fc31d485eb310781600645df43b3f45a76fd57:/test/models/oauth_nonce_test.rb
diff --git a/test/models/oauth_nonce_test.rb b/test/models/oauth_nonce_test.rb
index 341019cca..56178fb5f 100644
--- a/test/models/oauth_nonce_test.rb
+++ b/test/models/oauth_nonce_test.rb
@@ -1,8 +1,6 @@
require "test_helper"
class OauthNonceTest < ActiveSupport::TestCase
- api_fixtures
-
##
# the nonce has only one property, that it is a unique pair of
# string and timestamp.
@@ -14,7 +12,7 @@ class OauthNonceTest < ActiveSupport::TestCase
assert_not_equal false, nonce1, "First nonce should be unique. Check your test database is empty."
nonce2 = OauthNonce.remember(string, timestamp)
- assert_equal false, nonce2, "Shouldn't be able to remember the same nonce twice."
+ assert_not nonce2, "Shouldn't be able to remember the same nonce twice."
end
##
@@ -23,7 +21,7 @@ class OauthNonceTest < ActiveSupport::TestCase
string = "0123456789ABCDEF"
nonce1 = OauthNonce.remember(string, Time.now.to_i - 86430)
- assert_equal false, nonce1, "Nonces over a day in the past should be rejected"
+ assert_not nonce1, "Nonces over a day in the past should be rejected"
nonce2 = OauthNonce.remember(string, Time.now.to_i - 86370)
assert_not_equal false, nonce2, "Nonces under a day in the past should be rejected"