diff options
author | Saturneric <[email protected]> | 2023-07-12 11:10:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-07-12 11:10:22 +0000 |
commit | 3129b3ef5a04a6c449d4785d679d795d98c520bc (patch) | |
tree | 7961fa91edffaae1a5c5cdafb92fddb1fbedb446 /test/GpgCoreTestKeyModel.cpp | |
parent | feat: support aws amplify for manual deploying (diff) | |
download | GpgFrontend-3129b3ef5a04a6c449d4785d679d795d98c520bc.tar.gz GpgFrontend-3129b3ef5a04a6c449d4785d679d795d98c520bc.zip |
fix: change gpgfrontend.pub to gpgfrontend.bktus.com
Diffstat (limited to '')
-rw-r--r-- | test/GpgCoreTestKeyModel.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/GpgCoreTestKeyModel.cpp b/test/GpgCoreTestKeyModel.cpp index 41498e95..9ab670f1 100644 --- a/test/GpgCoreTestKeyModel.cpp +++ b/test/GpgCoreTestKeyModel.cpp @@ -72,7 +72,7 @@ TEST_F(GpgCoreTest, GpgKeyTest) { ASSERT_EQ(key.name(), "GpgFrontendTest"); ASSERT_TRUE(key.comment().empty()); - ASSERT_EQ(key.email(), "[email protected]"); + ASSERT_EQ(key.email(), "[email protected]"); ASSERT_EQ(key.id(), "81704859182661FB"); ASSERT_EQ(key.fpr(), "9490795B78F8AFE9F93BD09281704859182661FB"); ASSERT_EQ(key.expires(), @@ -129,8 +129,8 @@ TEST_F(GpgCoreTest, GpgUIDTest) { ASSERT_EQ(uid.name(), "GpgFrontendTest"); ASSERT_TRUE(uid.comment().empty()); - ASSERT_EQ(uid.email(), "[email protected]"); - ASSERT_EQ(uid.uid(), "GpgFrontendTest <[email protected]>"); + ASSERT_EQ(uid.email(), "[email protected]"); + ASSERT_EQ(uid.uid(), "GpgFrontendTest <[email protected]>"); ASSERT_FALSE(uid.invalid()); ASSERT_FALSE(uid.revoked()); } @@ -148,7 +148,7 @@ TEST_F(GpgCoreTest, GpgKeySignatureTest) { ASSERT_EQ(signature.name(), "GpgFrontendTest"); ASSERT_TRUE(signature.comment().empty()); - ASSERT_EQ(signature.email(), "[email protected]"); + ASSERT_EQ(signature.email(), "[email protected]"); ASSERT_EQ(signature.keyid(), "81704859182661FB"); ASSERT_EQ(signature.pubkey_algo(), "RSA"); @@ -156,7 +156,8 @@ TEST_F(GpgCoreTest, GpgKeySignatureTest) { ASSERT_FALSE(signature.invalid()); ASSERT_EQ(GpgFrontend::check_gpg_error_2_err_code(signature.status()), GPG_ERR_NO_ERROR); - ASSERT_EQ(signature.uid(), "GpgFrontendTest <[email protected]>"); + ASSERT_EQ(signature.uid(), + "GpgFrontendTest <[email protected]>"); } TEST_F(GpgCoreTest, GpgKeyGetterTest) { |