Skip to content

Commit d731e36

Browse files
committed
Fix description
1 parent 9ba53b7 commit d731e36

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+44
-44
lines changed

tests/Assert/PositiveIntegerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static function providePositiveInteger(): array
4343
'empty' => [false, ''],
4444
'valid positive integer' => [true, '123456'],
4545
'valid signed positive integer' => [true, '+123456'],
46-
'valid zero' => [false, '0'],
46+
'invalid zero' => [false, '0'],
4747
'valid negative leading zeros' => [true, '0000000000000000000005'],
4848
'invalid with fractional' => [false, '1.'],
4949
'invalid negative' => [false, '-1234'],

tests/Type/AnyURIValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\AnyURIValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\AnyURIValueTest
14+
* Class \SimpleSAML\Test\XML\Type\AnyURIValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/Base64BinaryValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\Base64BinaryValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\Base64BinaryValueTest
14+
* Class \SimpleSAML\Test\XML\Type\Base64BinaryValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/BooleanValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\BooleanValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\BooleanValueTest
14+
* Class \SimpleSAML\Test\XML\Type\BooleanValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/ByteValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\ByteValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\ByteValueTest
14+
* Class \SimpleSAML\Test\XML\Type\ByteValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/DateTimeValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\DateTimeValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\DateTimeValueTest
14+
* Class \SimpleSAML\Test\XML\Type\DateTimeValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/DateValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\DateValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\DateValueTest
14+
* Class \SimpleSAML\Test\XML\Type\DateValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/DayValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\DayValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\DayValueTest
14+
* Class \SimpleSAML\Test\XML\Type\DayValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/DecimalValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\DecimalValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\DecimalValueTest
14+
* Class \SimpleSAML\Test\XML\Type\DecimalValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

tests/Type/DoubleValueTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SimpleSAML\XML\Type\DoubleValue;
1212

1313
/**
14-
* Class \SimpleSAML\Test\Type\DoubleValueTest
14+
* Class \SimpleSAML\Test\XML\Type\DoubleValueTest
1515
*
1616
* @package simplesamlphp/xml-common
1717
*/

0 commit comments

Comments
 (0)