summaryrefslogtreecommitdiff
path: root/test/integration/hkp_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/hkp_test.rb')
-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