summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-06-10 10:28:09 +0200
committerAzul <azul@riseup.net>2016-06-10 10:28:09 +0200
commit10a57e4f92432ff2b82c4a6bb5027bb3bcbdfab9 (patch)
treebcd543481044813f3d556fba6f833f4555d8d453 /test
parentb4075771b2b1f3c688496d18d7a5a5f1db952004 (diff)
turn Hkp::FetchKey into Hkp::Source
The source was really just an empty shell now that we pushed the em specific stuff further down.
Diffstat (limited to 'test')
-rw-r--r--test/integration/hkp_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/hkp_test.rb b/test/integration/hkp_test.rb
index 6ef52fe..0410c4a 100644
--- a/test/integration/hkp_test.rb
+++ b/test/integration/hkp_test.rb
@@ -1,4 +1,5 @@
require 'test_helper'
+require 'nickserver/hkp/source'
class HkpTest < Minitest::Test
@@ -110,7 +111,7 @@ class HkpTest < Minitest::Test
def assert_response_for_uid(uid, &block)
EM.run do
- Nickserver::Hkp::FetchKey.new(nil).get(uid, &block)
+ Nickserver::Hkp::Source.new(nil).query(uid, &block)
EM.stop
end
end