File: Preemptively-fix-FTBFS-with-phpunit-10.patch

package info (click to toggle)
php-crypt-gpg 1.6.4-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,184 kB
  • sloc: php: 9,171; xml: 201; makefile: 9
file content (471 lines) | stat: -rw-r--r-- 15,974 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
From: Guilhem Moulin <guilhem@debian.org>
Date: Mon, 28 Dec 2020 13:44:07 +0100
Subject: Preemptively fix FTBFS with phpunit 10.

As of phpunit 9.5.0-3, the test suite passes but spits a bunch of
warnings:

    Warning:    Test case class not matching filename is deprecated in
                /<<PKGBUILDDIR>>/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
                Class name was 'DecryptAndVerifyTestCase', expected 'DecryptAndVerifyTest'
    Warning:    Test case class not matching filename is deprecated in
                /<<PKGBUILDDIR>>/Crypt_GPG-1.6.4/tests/DecryptTest.php
                Class name was 'DecryptTestCase', expected 'DecryptTest'
    […]

To fix this we simply drop the Case suffix from the class name:

    for p in Crypt_GPG-*/tests/*Test.php; do
        t="${p##*/}"
        t="${t%.php}"
        if grep -Fxq "class ${t}Case extends Crypt_GPG_TestCase" "$p"; then
            sed -ri "s/\b${t}Case\b/$t/" -- "$p"
        fi
    done

Forwarded: not-needed
---
 Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php | 2 +-
 Crypt_GPG-1.6.4/tests/DecryptTest.php          | 4 ++--
 Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php | 4 ++--
 Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php  | 4 ++--
 Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php   | 2 +-
 Crypt_GPG-1.6.4/tests/EncryptTest.php          | 4 ++--
 Crypt_GPG-1.6.4/tests/ExceptionsTest.php       | 4 ++--
 Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php | 4 ++--
 Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php  | 4 ++--
 Crypt_GPG-1.6.4/tests/GeneralTest.php          | 4 ++--
 Crypt_GPG-1.6.4/tests/GetFingerprintTest.php   | 4 ++--
 Crypt_GPG-1.6.4/tests/GetKeysTest.php          | 4 ++--
 Crypt_GPG-1.6.4/tests/ImportKeyTest.php        | 4 ++--
 Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php     | 4 ++--
 Crypt_GPG-1.6.4/tests/KeyTest.php              | 4 ++--
 Crypt_GPG-1.6.4/tests/SignTest.php             | 4 ++--
 Crypt_GPG-1.6.4/tests/SignatureTest.php        | 4 ++--
 Crypt_GPG-1.6.4/tests/SubKeyTest.php           | 4 ++--
 Crypt_GPG-1.6.4/tests/UserIdTest.php           | 4 ++--
 Crypt_GPG-1.6.4/tests/VerifyTest.php           | 4 ++--
 20 files changed, 38 insertions(+), 38 deletions(-)

diff --git a/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php b/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
index 419282e..6abdb01 100644
--- a/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class DecryptAndVerifyTestCase extends Crypt_GPG_TestCase
+class DecryptAndVerifyTest extends Crypt_GPG_TestCase
 {
     // string
     // {{{ testDecryptVerify()
diff --git a/Crypt_GPG-1.6.4/tests/DecryptTest.php b/Crypt_GPG-1.6.4/tests/DecryptTest.php
index 49e9c66..03968cf 100644
--- a/Crypt_GPG-1.6.4/tests/DecryptTest.php
+++ b/Crypt_GPG-1.6.4/tests/DecryptTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit DecryptTestCase
+ * $ phpunit DecryptTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class DecryptTestCase extends Crypt_GPG_TestCase
+class DecryptTest extends Crypt_GPG_TestCase
 {
     // string
     // {{{ testDecrypt()
diff --git a/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php b/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
index 7d37f57..ab28184 100644
--- a/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit DeletePrivateKeyTestCase
+ * $ phpunit DeletePrivateKeyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class DeletePrivateKeyTestCase extends Crypt_GPG_TestCase
+class DeletePrivateKeyTest extends Crypt_GPG_TestCase
 {
     // {{{ testDeletePrivateKey()
 
diff --git a/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php b/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
index 621b0bb..6b1629e 100644
--- a/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit DeletePublicKeyTestCase
+ * $ phpunit DeletePublicKeyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class DeletePublicKeyTestCase extends Crypt_GPG_TestCase
+class DeletePublicKeyTest extends Crypt_GPG_TestCase
 {
     // {{{ testDeletePublicKey()
 
diff --git a/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php b/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
index 246d5d8..1a7ecdd 100644
--- a/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
+++ b/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class EncryptAndSignTestCase extends Crypt_GPG_TestCase
+class EncryptAndSignTest extends Crypt_GPG_TestCase
 {
     // string
     // {{{ testEncryptAndSignKeyNotFoundException_invalid_sign_key()
diff --git a/Crypt_GPG-1.6.4/tests/EncryptTest.php b/Crypt_GPG-1.6.4/tests/EncryptTest.php
index 52bb632..4dbec58 100644
--- a/Crypt_GPG-1.6.4/tests/EncryptTest.php
+++ b/Crypt_GPG-1.6.4/tests/EncryptTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit EncryptTestCase
+ * $ phpunit EncryptTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class EncryptTestCase extends Crypt_GPG_TestCase
+class EncryptTest extends Crypt_GPG_TestCase
 {
     public function testHasEncryptKeys()
     {
diff --git a/Crypt_GPG-1.6.4/tests/ExceptionsTest.php b/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
index b642e50..6e16877 100644
--- a/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit ExceptionsTestCase
+ * $ phpunit ExceptionsTest
  * </code>
  *
  * LICENSE:
@@ -60,7 +60,7 @@ require_once 'Crypt/GPG/Exceptions.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class ExceptionsTestCase extends Crypt_GPG_TestCase
+class ExceptionsTest extends Crypt_GPG_TestCase
 {
     // exception
     // {{{ testException
diff --git a/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php b/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
index 7f17826..96d5a3d 100644
--- a/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit ExportPrivateKeyTestCase
+ * $ phpunit ExportPrivateKeyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class ExportPrivateKeyTestCase extends Crypt_GPG_TestCase
+class ExportPrivateKeyTest extends Crypt_GPG_TestCase
 {
     // {{{ testExportPrivateKey()
 
diff --git a/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php b/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
index d3ec804..591af25 100644
--- a/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit ExportPublicKeyTestCase
+ * $ phpunit ExportPublicKeyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class ExportPublicKeyTestCase extends Crypt_GPG_TestCase
+class ExportPublicKeyTest extends Crypt_GPG_TestCase
 {
     // {{{ testExportPublicKey()
 
diff --git a/Crypt_GPG-1.6.4/tests/GeneralTest.php b/Crypt_GPG-1.6.4/tests/GeneralTest.php
index 82e7f3d..571b13f 100644
--- a/Crypt_GPG-1.6.4/tests/GeneralTest.php
+++ b/Crypt_GPG-1.6.4/tests/GeneralTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit GeneralTestCase
+ * $ phpunit GeneralTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class GeneralTestCase extends Crypt_GPG_TestCase
+class GeneralTest extends Crypt_GPG_TestCase
 {
     // {{{ testPublicKeyringFileException()
 
diff --git a/Crypt_GPG-1.6.4/tests/GetFingerprintTest.php b/Crypt_GPG-1.6.4/tests/GetFingerprintTest.php
index 7274a28..73b14a6 100644
--- a/Crypt_GPG-1.6.4/tests/GetFingerprintTest.php
+++ b/Crypt_GPG-1.6.4/tests/GetFingerprintTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit GetFingerprintTestCase
+ * $ phpunit GetFingerprintTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class GetFingerprintTestCase extends Crypt_GPG_TestCase
+class GetFingerprintTest extends Crypt_GPG_TestCase
 {
     // {{{ testGetFingerprint()
 
diff --git a/Crypt_GPG-1.6.4/tests/GetKeysTest.php b/Crypt_GPG-1.6.4/tests/GetKeysTest.php
index 2146e48..cb5a3e7 100644
--- a/Crypt_GPG-1.6.4/tests/GetKeysTest.php
+++ b/Crypt_GPG-1.6.4/tests/GetKeysTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit GetKeysTestCase
+ * $ phpunit GetKeysTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class GetKeysTestCase extends Crypt_GPG_TestCase
+class GetKeysTest extends Crypt_GPG_TestCase
 {
     // {{{ testGetKeys()
 
diff --git a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
index 2a5ec22..dbc174f 100644
--- a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit ImportKeyTestCase
+ * $ phpunit ImportKeyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class ImportKeyTestCase extends Crypt_GPG_TestCase
+class ImportKeyTest extends Crypt_GPG_TestCase
 {
     // set up
     // {{{ setUp()
diff --git a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
index 8091dfa..5229593 100644
--- a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
+++ b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit KeyGeneratorTestCase
+ * $ phpunit KeyGeneratorTest
  * </code>
  *
  * LICENSE:
@@ -60,7 +60,7 @@ require_once 'Crypt/GPG/KeyGenerator.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class KeyGeneratorTestCase extends Crypt_GPG_TestCase
+class KeyGeneratorTest extends Crypt_GPG_TestCase
 {
     // helper methods
     // {{{ assertKeyEquals()
diff --git a/Crypt_GPG-1.6.4/tests/KeyTest.php b/Crypt_GPG-1.6.4/tests/KeyTest.php
index 72b2955..8766bdc 100644
--- a/Crypt_GPG-1.6.4/tests/KeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/KeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit KeyTestCase
+ * $ phpunit KeyTest
  * </code>
  *
  * LICENSE:
@@ -70,7 +70,7 @@ require_once 'Crypt/GPG/SubKey.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class KeyTestCase extends Crypt_GPG_TestCase
+class KeyTest extends Crypt_GPG_TestCase
 {
     // accessors
     // {{{ testGetSubKeys()
diff --git a/Crypt_GPG-1.6.4/tests/SignTest.php b/Crypt_GPG-1.6.4/tests/SignTest.php
index 296e69d..43b6235 100644
--- a/Crypt_GPG-1.6.4/tests/SignTest.php
+++ b/Crypt_GPG-1.6.4/tests/SignTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit SignTestCase
+ * $ phpunit SignTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class SignTestCase extends Crypt_GPG_TestCase
+class SignTest extends Crypt_GPG_TestCase
 {
     public function testHasSignKeys()
     {
diff --git a/Crypt_GPG-1.6.4/tests/SignatureTest.php b/Crypt_GPG-1.6.4/tests/SignatureTest.php
index d8aabac..3b4e7b6 100644
--- a/Crypt_GPG-1.6.4/tests/SignatureTest.php
+++ b/Crypt_GPG-1.6.4/tests/SignatureTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit SignatureTestCase
+ * $ phpunit SignatureTest
  * </code>
  *
  * LICENSE:
@@ -60,7 +60,7 @@ require_once 'Crypt/GPG/Signature.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class SignatureTestCase extends Crypt_GPG_TestCase
+class SignatureTest extends Crypt_GPG_TestCase
 {
     // construct
     // {{{ testConstructFromSignature()
diff --git a/Crypt_GPG-1.6.4/tests/SubKeyTest.php b/Crypt_GPG-1.6.4/tests/SubKeyTest.php
index 64aec86..8541dee 100644
--- a/Crypt_GPG-1.6.4/tests/SubKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/SubKeyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit SubKeyTestCase
+ * $ phpunit SubKeyTest
  * </code>
  *
  * LICENSE:
@@ -60,7 +60,7 @@ require_once 'Crypt/GPG/SubKey.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class SubKeyTestCase extends Crypt_GPG_TestCase
+class SubKeyTest extends Crypt_GPG_TestCase
 {
     // construct
     // {{{ testConstructFromString()
diff --git a/Crypt_GPG-1.6.4/tests/UserIdTest.php b/Crypt_GPG-1.6.4/tests/UserIdTest.php
index 07271a0..a2728fe 100644
--- a/Crypt_GPG-1.6.4/tests/UserIdTest.php
+++ b/Crypt_GPG-1.6.4/tests/UserIdTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit UserIdTestCase
+ * $ phpunit UserIdTest
  * </code>
  *
  * LICENSE:
@@ -60,7 +60,7 @@ require_once 'Crypt/GPG/UserId.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class UserIdTestCase extends Crypt_GPG_TestCase
+class UserIdTest extends Crypt_GPG_TestCase
 {
     // construct
     // {{{ testConstructFromString()
diff --git a/Crypt_GPG-1.6.4/tests/VerifyTest.php b/Crypt_GPG-1.6.4/tests/VerifyTest.php
index fe72f25..8627f8d 100644
--- a/Crypt_GPG-1.6.4/tests/VerifyTest.php
+++ b/Crypt_GPG-1.6.4/tests/VerifyTest.php
@@ -12,7 +12,7 @@
  *
  * To run these tests, use:
  * <code>
- * $ phpunit VerifyTestCase
+ * $ phpunit VerifyTest
  * </code>
  *
  * LICENSE:
@@ -55,7 +55,7 @@ require_once 'TestCase.php';
  * @license   http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
  * @link      http://pear.php.net/package/Crypt_GPG
  */
-class VerifyTestCase extends Crypt_GPG_TestCase
+class VerifyTest extends Crypt_GPG_TestCase
 {
     // string
     // {{{ testVerifyNoDataException_invalid()