diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-04-27 09:30:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 09:30:49 +0200 |
commit | fbe212de6a599a90411d5a80d4fb00d2d6ca9041 (patch) | |
tree | 43038bf3550f8f162495dfc8d9cc077ad1da4052 /lib | |
parent | a481af15a9b2a7829c2a849906aa4b475ccdbd98 (diff) | |
parent | fc1dd81ea50e3a12ce6a298103a94d2f5445d7d2 (diff) |
Merge pull request #1752 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/tests.rake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tasks/tests.rake b/lib/tasks/tests.rake index 8082f32fb..0f3b44a74 100644 --- a/lib/tasks/tests.rake +++ b/lib/tasks/tests.rake @@ -33,6 +33,11 @@ namespace :tests do puts 'AccountConversation records not created as expected' exit(1) end + + if Account.find(-99).private_key.blank? + puts 'Instance actor does not have a private key' + exit(1) + end end desc 'Populate the database with test data for 2.4.0' |