From a25ef6974e0ba3989f6205c19a1f9ccfc81db584 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 15 May 2019 16:28:11 +0200 Subject: core, store, tool: Use realm instead of domain. - Remove the domain parameter from core::Context. - Replace it with a realm to be passed in when opening a store. - For sq, merge store name and realm into the --store parameter. - Fixes #105. --- net/tests/hkp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/tests') diff --git a/net/tests/hkp.rs b/net/tests/hkp.rs index bbdf8f43..0faf40a5 100644 --- a/net/tests/hkp.rs +++ b/net/tests/hkp.rs @@ -142,7 +142,7 @@ fn start_server() -> SocketAddr { #[test] fn get() { - let ctx = Context::configure("org.sequoia-pgp.api.tests") + let ctx = Context::configure() .ephemeral() .network_policy(NetworkPolicy::Insecure) .build().unwrap(); @@ -161,7 +161,7 @@ fn get() { #[test] fn send() { - let ctx = Context::configure("org.sequoia-pgp.api.tests") + let ctx = Context::configure() .ephemeral() .network_policy(NetworkPolicy::Insecure) .build().unwrap(); -- cgit v1.2.3