summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-06-15 10:36:25 +0200
committerAzul <azul@riseup.net>2016-06-15 10:36:25 +0200
commit93258bd6fe6247e7af67f423243eba9808e920ee (patch)
tree559b3998465248138b6f24a76b6b3e55e60f3986 /test
parent48502085e5aa7a1d8d430fc1dd4913f34e818afa (diff)
we don't need FetchKeyInfo anymore including in Source
Diffstat (limited to 'test')
-rw-r--r--test/integration/hkp_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/hkp_test.rb b/test/integration/hkp_test.rb
index 2afd2c0..a824a3f 100644
--- a/test/integration/hkp_test.rb
+++ b/test/integration/hkp_test.rb
@@ -122,7 +122,7 @@ class HkpTest < Minitest::Test
def assert_key_info_for_uid(uid, &block)
EM.run do
- Nickserver::Hkp::FetchKeyInfo.new(adapter).search uid do |status, keys|
+ Nickserver::Hkp::Source.new(adapter).search uid do |status, keys|
assert_equal 200, status
yield keys
EM.stop