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/GpgCoreTestKeyModelAlone.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 'test/GpgCoreTestKeyModelAlone.cpp')
-rw-r--r-- | test/GpgCoreTestKeyModelAlone.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/GpgCoreTestKeyModelAlone.cpp b/test/GpgCoreTestKeyModelAlone.cpp index 31d33bf9..88611eeb 100644 --- a/test/GpgCoreTestKeyModelAlone.cpp +++ b/test/GpgCoreTestKeyModelAlone.cpp @@ -76,7 +76,7 @@ TEST_F(GpgCoreTest, GpgKeyTestAlone) { 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(), @@ -133,8 +133,8 @@ TEST_F(GpgCoreTest, GpgUIDTestAlone) { 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()); } |