summaryrefslogtreecommitdiff
path: root/test/remote/wkd_source_test.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-10-11 15:46:48 +0200
committerAzul <azul@riseup.net>2017-10-11 15:46:48 +0200
commit726c035b7b7fac636982ac6e4c28e199d4c8cc8a (patch)
tree2c01c589fc160e9b7d48e3e9e1f85f17a9c3b175 /test/remote/wkd_source_test.rb
parentfac140a8ff76e98c275194845125d4c97f4ba07b (diff)
style: more rubocop fixes
Diffstat (limited to 'test/remote/wkd_source_test.rb')
-rw-r--r--test/remote/wkd_source_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/remote/wkd_source_test.rb b/test/remote/wkd_source_test.rb
index 1ed7ea5..46a6bbb 100644
--- a/test/remote/wkd_source_test.rb
+++ b/test/remote/wkd_source_test.rb
@@ -27,8 +27,8 @@ class RemoteWkdSourceTest < CelluloidTest
def assert_pgp_key_in(response)
json = JSON.parse response.content
- assert_equal email_with_key.to_s, json["address"]
- refute_empty json["openpgp"]
+ assert_equal email_with_key.to_s, json['address']
+ refute_empty json['openpgp']
assert_equal file_content('dewey.pgp.asc'), json['openpgp']
end