diff options
author | elijah <elijah@riseup.net> | 2016-01-31 14:43:19 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-01-31 15:10:10 -0800 |
commit | e7e16318d056dbd9ec272085487cce6039627b09 (patch) | |
tree | 6ff86c1ae638da1ad620924037ccd41f9418b4b8 /test/unit/identity_test.rb | |
parent | 16fb1c2bf33ca418a6db06217e286964077a730f (diff) |
remove cert fingerprints for disabled users, so that they cannot send email anymore. closes #7690
Diffstat (limited to 'test/unit/identity_test.rb')
-rw-r--r-- | test/unit/identity_test.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/identity_test.rb b/test/unit/identity_test.rb index f5c95f8..1f93109 100644 --- a/test/unit/identity_test.rb +++ b/test/unit/identity_test.rb @@ -1,4 +1,4 @@ -require 'test_helper' +require_relative '../test_helper' class IdentityTest < ActiveSupport::TestCase include StubRecordHelper @@ -177,9 +177,9 @@ class IdentityTest < ActiveSupport::TestCase end def cert_stub - # make this expire later than the others so it's on top - # when sorting by expiry descending. - @cert_stub ||= stub expiry: 2.month.from_now, - fingerprint: SecureRandom.hex + # make this expire later than the other test identities + # so that the query that returns certs sorted by expiry will + # return cert_stub first. + @cert_stub ||= stub(expiry: 2.month.from_now, fingerprint: SecureRandom.hex) end end |