[git] GPGME - branch, master, updated. gpgme-1.8.0-34-gabfd241

by Andre Heinecke cvs at cvs.gnupg.org
Mon Jan 16 14:16:51 CET 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG Made Easy".

The branch, master has been updated
       via  abfd241d1a1ae8e30e18b7c5e0658b8c54d89544 (commit)
      from  8aba08d1d0871f439fb7193adc4a2f43a81ee216 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit abfd241d1a1ae8e30e18b7c5e0658b8c54d89544
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Mon Jan 16 14:16:20 2017 +0100

    qt: Use QVERIFY instead of Q_ASSERT in conf test
    
    * lang/qt/tests/t-config.cpp: Use QVERIFY instead of Q_ASSERT.

diff --git a/lang/qt/tests/t-config.cpp b/lang/qt/tests/t-config.cpp
index 046147c..0a7df22 100644
--- a/lang/qt/tests/t-config.cpp
+++ b/lang/qt/tests/t-config.cpp
@@ -54,11 +54,11 @@ private Q_SLOTS:
         // unit test.
         for (int i = 0; i < 10; i++) {
             auto conf = cryptoConfig();
-            Q_ASSERT (conf);
+            QVERIFY(conf);
             auto entry = conf->entry(QStringLiteral("gpg"),
                     QStringLiteral("Keyserver"),
                     QStringLiteral("keyserver"));
-            Q_ASSERT(entry);
+            QVERIFY(entry);
             const QString url(QStringLiteral("hkp://foo.bar.baz"));
             entry->setStringValue(url);
             conf->sync(false);
@@ -82,7 +82,7 @@ private Q_SLOTS:
         QGpgMETest::initTestCase();
         const QString gpgHome = qgetenv("GNUPGHOME");
         qputenv("GNUPGHOME", mDir.path().toUtf8());
-        Q_ASSERT(mDir.isValid());
+        QVERIFY(mDir.isValid());
     }
 private:
     QTemporaryDir mDir;

-----------------------------------------------------------------------

Summary of changes:
 lang/qt/tests/t-config.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GnuPG Made Easy
http://git.gnupg.org




More information about the Gnupg-commits mailing list