From d731e36a6fa64edf61a81f3b0552b2c2dd40ff51 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Fri, 17 Jan 2025 23:12:07 +0100 Subject: [PATCH] Fix description --- tests/Assert/PositiveIntegerTest.php | 2 +- tests/Type/AnyURIValueTest.php | 2 +- tests/Type/Base64BinaryValueTest.php | 2 +- tests/Type/BooleanValueTest.php | 2 +- tests/Type/ByteValueTest.php | 2 +- tests/Type/DateTimeValueTest.php | 2 +- tests/Type/DateValueTest.php | 2 +- tests/Type/DayValueTest.php | 2 +- tests/Type/DecimalValueTest.php | 2 +- tests/Type/DoubleValueTest.php | 2 +- tests/Type/DurationValueTest.php | 2 +- tests/Type/EntitiesValueTest.php | 2 +- tests/Type/EntityValueTest.php | 2 +- tests/Type/FloatValueTest.php | 2 +- tests/Type/HexBinaryValueTest.php | 2 +- tests/Type/IDRefValueTest.php | 2 +- tests/Type/IDRefsValueTest.php | 2 +- tests/Type/IDValueTest.php | 2 +- tests/Type/IntValueTest.php | 2 +- tests/Type/IntegerValueTest.php | 2 +- tests/Type/LanguageValueTest.php | 2 +- tests/Type/LongValueTest.php | 2 +- tests/Type/MonthValueTest.php | 2 +- tests/Type/NCNameValueTest.php | 2 +- tests/Type/NMTokenValueTest.php | 2 +- tests/Type/NMTokensValueTest.php | 2 +- tests/Type/NameValueTest.php | 2 +- tests/Type/NegativeIntegerValueTest.php | 2 +- tests/Type/NonNegativeIntegerValueTest.php | 2 +- tests/Type/NonPositiveIntegerValueTest.php | 2 +- tests/Type/NormalizedStringValueTest.php | 2 +- tests/Type/PositiveIntegerValueTest.php | 4 ++-- tests/Type/QNameValueTest.php | 2 +- tests/Type/ShortValueTest.php | 2 +- tests/Type/StringValueTest.php | 2 +- tests/Type/TimeValueTest.php | 2 +- tests/Type/TokenValueTest.php | 2 +- tests/Type/UnsignedByteValueTest.php | 2 +- tests/Type/UnsignedIntValueTest.php | 2 +- tests/Type/UnsignedLongValueTest.php | 2 +- tests/Type/UnsignedShortValueTest.php | 2 +- tests/Type/YearMonthValueTest.php | 2 +- tests/Type/YearValueTest.php | 2 +- 43 files changed, 44 insertions(+), 44 deletions(-) diff --git a/tests/Assert/PositiveIntegerTest.php b/tests/Assert/PositiveIntegerTest.php index 326d6d1a..927e6ce6 100644 --- a/tests/Assert/PositiveIntegerTest.php +++ b/tests/Assert/PositiveIntegerTest.php @@ -43,7 +43,7 @@ public static function providePositiveInteger(): array 'empty' => [false, ''], 'valid positive integer' => [true, '123456'], 'valid signed positive integer' => [true, '+123456'], - 'valid zero' => [false, '0'], + 'invalid zero' => [false, '0'], 'valid negative leading zeros' => [true, '0000000000000000000005'], 'invalid with fractional' => [false, '1.'], 'invalid negative' => [false, '-1234'], diff --git a/tests/Type/AnyURIValueTest.php b/tests/Type/AnyURIValueTest.php index ae7549b7..0df855b7 100644 --- a/tests/Type/AnyURIValueTest.php +++ b/tests/Type/AnyURIValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\AnyURIValue; /** - * Class \SimpleSAML\Test\Type\AnyURIValueTest + * Class \SimpleSAML\Test\XML\Type\AnyURIValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/Base64BinaryValueTest.php b/tests/Type/Base64BinaryValueTest.php index 6bb63e66..4e1f5899 100644 --- a/tests/Type/Base64BinaryValueTest.php +++ b/tests/Type/Base64BinaryValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\Base64BinaryValue; /** - * Class \SimpleSAML\Test\Type\Base64BinaryValueTest + * Class \SimpleSAML\Test\XML\Type\Base64BinaryValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/BooleanValueTest.php b/tests/Type/BooleanValueTest.php index 2e6d6578..c5fda9b3 100644 --- a/tests/Type/BooleanValueTest.php +++ b/tests/Type/BooleanValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\BooleanValue; /** - * Class \SimpleSAML\Test\Type\BooleanValueTest + * Class \SimpleSAML\Test\XML\Type\BooleanValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/ByteValueTest.php b/tests/Type/ByteValueTest.php index 47807e46..c2361768 100644 --- a/tests/Type/ByteValueTest.php +++ b/tests/Type/ByteValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\ByteValue; /** - * Class \SimpleSAML\Test\Type\ByteValueTest + * Class \SimpleSAML\Test\XML\Type\ByteValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DateTimeValueTest.php b/tests/Type/DateTimeValueTest.php index efe44731..98f0c299 100644 --- a/tests/Type/DateTimeValueTest.php +++ b/tests/Type/DateTimeValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DateTimeValue; /** - * Class \SimpleSAML\Test\Type\DateTimeValueTest + * Class \SimpleSAML\Test\XML\Type\DateTimeValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DateValueTest.php b/tests/Type/DateValueTest.php index f4ba6b50..f8ef3bfd 100644 --- a/tests/Type/DateValueTest.php +++ b/tests/Type/DateValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DateValue; /** - * Class \SimpleSAML\Test\Type\DateValueTest + * Class \SimpleSAML\Test\XML\Type\DateValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DayValueTest.php b/tests/Type/DayValueTest.php index 799ffc17..fac39867 100644 --- a/tests/Type/DayValueTest.php +++ b/tests/Type/DayValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DayValue; /** - * Class \SimpleSAML\Test\Type\DayValueTest + * Class \SimpleSAML\Test\XML\Type\DayValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DecimalValueTest.php b/tests/Type/DecimalValueTest.php index 73c720a5..af6e1052 100644 --- a/tests/Type/DecimalValueTest.php +++ b/tests/Type/DecimalValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DecimalValue; /** - * Class \SimpleSAML\Test\Type\DecimalValueTest + * Class \SimpleSAML\Test\XML\Type\DecimalValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DoubleValueTest.php b/tests/Type/DoubleValueTest.php index 50b01a58..ee1c7c9b 100644 --- a/tests/Type/DoubleValueTest.php +++ b/tests/Type/DoubleValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DoubleValue; /** - * Class \SimpleSAML\Test\Type\DoubleValueTest + * Class \SimpleSAML\Test\XML\Type\DoubleValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/DurationValueTest.php b/tests/Type/DurationValueTest.php index 57a4a127..a9efea79 100644 --- a/tests/Type/DurationValueTest.php +++ b/tests/Type/DurationValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\DurationValue; /** - * Class \SimpleSAML\Test\Type\DurationValueTest + * Class \SimpleSAML\Test\XML\Type\DurationValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/EntitiesValueTest.php b/tests/Type/EntitiesValueTest.php index 3c7bf573..a50ab145 100644 --- a/tests/Type/EntitiesValueTest.php +++ b/tests/Type/EntitiesValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\EntitiesValue; /** - * Class \SimpleSAML\Test\Type\EntitiesValueTest + * Class \SimpleSAML\Test\XML\Type\EntitiesValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/EntityValueTest.php b/tests/Type/EntityValueTest.php index 462b8350..dbb88fbc 100644 --- a/tests/Type/EntityValueTest.php +++ b/tests/Type/EntityValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\EntityValue; /** - * Class \SimpleSAML\Test\Type\EntityValueTest + * Class \SimpleSAML\Test\XML\Type\EntityValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/FloatValueTest.php b/tests/Type/FloatValueTest.php index 9c69a04e..36774af8 100644 --- a/tests/Type/FloatValueTest.php +++ b/tests/Type/FloatValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\FloatValue; /** - * Class \SimpleSAML\Test\Type\FloatValueTest + * Class \SimpleSAML\Test\XML\Type\FloatValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/HexBinaryValueTest.php b/tests/Type/HexBinaryValueTest.php index bd0da070..81b801ca 100644 --- a/tests/Type/HexBinaryValueTest.php +++ b/tests/Type/HexBinaryValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\HexBinaryValue; /** - * Class \SimpleSAML\Test\Type\HexBinaryValueTest + * Class \SimpleSAML\Test\XML\Type\HexBinaryValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/IDRefValueTest.php b/tests/Type/IDRefValueTest.php index b0504943..de1cabca 100644 --- a/tests/Type/IDRefValueTest.php +++ b/tests/Type/IDRefValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\IDRefValue; /** - * Class \SimpleSAML\Test\Type\IDRefValueTest + * Class \SimpleSAML\Test\XML\Type\IDRefValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/IDRefsValueTest.php b/tests/Type/IDRefsValueTest.php index d9899cc5..447c2c24 100644 --- a/tests/Type/IDRefsValueTest.php +++ b/tests/Type/IDRefsValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\IDRefsValue; /** - * Class \SimpleSAML\Test\Type\IDRefsValueTest + * Class \SimpleSAML\Test\XML\Type\IDRefsValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/IDValueTest.php b/tests/Type/IDValueTest.php index 9fab83c6..032e1b9b 100644 --- a/tests/Type/IDValueTest.php +++ b/tests/Type/IDValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\IDValue; /** - * Class \SimpleSAML\Test\Type\IDValueTest + * Class \SimpleSAML\Test\XML\Type\IDValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/IntValueTest.php b/tests/Type/IntValueTest.php index 315aad15..1654a5db 100644 --- a/tests/Type/IntValueTest.php +++ b/tests/Type/IntValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\IntValue; /** - * Class \SimpleSAML\Test\Type\IntValueTest + * Class \SimpleSAML\Test\XML\Type\IntValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/IntegerValueTest.php b/tests/Type/IntegerValueTest.php index 5b695197..ab38fe50 100644 --- a/tests/Type/IntegerValueTest.php +++ b/tests/Type/IntegerValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\IntegerValue; /** - * Class \SimpleSAML\Test\Type\IntegerValueTest + * Class \SimpleSAML\Test\XML\Type\IntegerValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/LanguageValueTest.php b/tests/Type/LanguageValueTest.php index fd5791c3..2fc2239d 100644 --- a/tests/Type/LanguageValueTest.php +++ b/tests/Type/LanguageValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\LanguageValue; /** - * Class \SimpleSAML\Test\Type\LanguageValueTest + * Class \SimpleSAML\Test\XML\Type\LanguageValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/LongValueTest.php b/tests/Type/LongValueTest.php index 98eaf5fe..257e2098 100644 --- a/tests/Type/LongValueTest.php +++ b/tests/Type/LongValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\LongValue; /** - * Class \SimpleSAML\Test\Type\LongValueTest + * Class \SimpleSAML\Test\XML\Type\LongValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/MonthValueTest.php b/tests/Type/MonthValueTest.php index a89bb797..acf6e407 100644 --- a/tests/Type/MonthValueTest.php +++ b/tests/Type/MonthValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\MonthValue; /** - * Class \SimpleSAML\Test\Type\MonthValueTest + * Class \SimpleSAML\Test\XML\Type\MonthValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NCNameValueTest.php b/tests/Type/NCNameValueTest.php index 111ad654..6b1cdcce 100644 --- a/tests/Type/NCNameValueTest.php +++ b/tests/Type/NCNameValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NCNameValue; /** - * Class \SimpleSAML\Test\Type\NCNameValueTest + * Class \SimpleSAML\Test\XML\Type\NCNameValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NMTokenValueTest.php b/tests/Type/NMTokenValueTest.php index bff0fcde..eee8f588 100644 --- a/tests/Type/NMTokenValueTest.php +++ b/tests/Type/NMTokenValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NMTokenValue; /** - * Class \SimpleSAML\Test\Type\NMTokenValueTest + * Class \SimpleSAML\Test\XML\Type\NMTokenValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NMTokensValueTest.php b/tests/Type/NMTokensValueTest.php index be055f01..d933c9e0 100644 --- a/tests/Type/NMTokensValueTest.php +++ b/tests/Type/NMTokensValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NMTokensValue; /** - * Class \SimpleSAML\Test\Type\NMTokensValueTest + * Class \SimpleSAML\Test\XML\Type\NMTokensValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NameValueTest.php b/tests/Type/NameValueTest.php index e83b67e5..649fcae0 100644 --- a/tests/Type/NameValueTest.php +++ b/tests/Type/NameValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NameValue; /** - * Class \SimpleSAML\Test\Type\NameValueTest + * Class \SimpleSAML\Test\XML\Type\NameValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NegativeIntegerValueTest.php b/tests/Type/NegativeIntegerValueTest.php index f68856bb..50551a5b 100644 --- a/tests/Type/NegativeIntegerValueTest.php +++ b/tests/Type/NegativeIntegerValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NegativeIntegerValue; /** - * Class \SimpleSAML\Test\Type\NegativeIntegerValueTest + * Class \SimpleSAML\Test\XML\Type\NegativeIntegerValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NonNegativeIntegerValueTest.php b/tests/Type/NonNegativeIntegerValueTest.php index 386d5077..30228a8a 100644 --- a/tests/Type/NonNegativeIntegerValueTest.php +++ b/tests/Type/NonNegativeIntegerValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NonNegativeIntegerValue; /** - * Class \SimpleSAML\Test\Type\NonNegativeIntegerValueTest + * Class \SimpleSAML\Test\XML\Type\NonNegativeIntegerValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NonPositiveIntegerValueTest.php b/tests/Type/NonPositiveIntegerValueTest.php index 3a48d111..288c0aa1 100644 --- a/tests/Type/NonPositiveIntegerValueTest.php +++ b/tests/Type/NonPositiveIntegerValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\NonPositiveIntegerValue; /** - * Class \SimpleSAML\Test\Type\NonPositiveIntegerValueTest + * Class \SimpleSAML\Test\XML\Type\NonPositiveIntegerValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/NormalizedStringValueTest.php b/tests/Type/NormalizedStringValueTest.php index 9975fbbf..78562d26 100644 --- a/tests/Type/NormalizedStringValueTest.php +++ b/tests/Type/NormalizedStringValueTest.php @@ -10,7 +10,7 @@ use SimpleSAML\XML\Type\NormalizedStringValue; /** - * Class \SimpleSAML\Test\Type\NormalizedStringValueValueTest + * Class \SimpleSAML\Test\XML\Type\NormalizedStringValueValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/PositiveIntegerValueTest.php b/tests/Type/PositiveIntegerValueTest.php index edf238cf..136c82f2 100644 --- a/tests/Type/PositiveIntegerValueTest.php +++ b/tests/Type/PositiveIntegerValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\PositiveIntegerValue; /** - * Class \SimpleSAML\Test\Type\PositiveIntegerValueTest + * Class \SimpleSAML\Test\XML\Type\PositiveIntegerValueTest * * @package simplesamlphp/xml-common */ @@ -43,7 +43,7 @@ public static function providePositiveInteger(): array 'empty' => [false, ''], 'valid positive integer' => [true, '123456'], 'valid signed positive integer' => [true, '+123456'], - 'valid zero' => [false, '0'], + 'invalid zero' => [false, '0'], 'valid negative leading zeros' => [true, '0000000000000000000005'], 'valid with whitespace collapse' => [true, " 1 234 \n"], 'invalid with fractional' => [false, '1.'], diff --git a/tests/Type/QNameValueTest.php b/tests/Type/QNameValueTest.php index 23431e74..a4b1083a 100644 --- a/tests/Type/QNameValueTest.php +++ b/tests/Type/QNameValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\QNameValue; /** - * Class \SimpleSAML\Test\Type\QNameValueTest + * Class \SimpleSAML\Test\XML\Type\QNameValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/ShortValueTest.php b/tests/Type/ShortValueTest.php index 54cec8fb..205d2aba 100644 --- a/tests/Type/ShortValueTest.php +++ b/tests/Type/ShortValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\ShortValue; /** - * Class \SimpleSAML\Test\Type\ShortValueTest + * Class \SimpleSAML\Test\XML\Type\ShortValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/StringValueTest.php b/tests/Type/StringValueTest.php index 2050d36a..51c6925d 100644 --- a/tests/Type/StringValueTest.php +++ b/tests/Type/StringValueTest.php @@ -10,7 +10,7 @@ use SimpleSAML\XML\Type\StringValue; /** - * Class \SimpleSAML\Test\Type\StringValueValueTest + * Class \SimpleSAML\Test\XML\Type\StringValueValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/TimeValueTest.php b/tests/Type/TimeValueTest.php index abc6f3b4..b6ac3757 100644 --- a/tests/Type/TimeValueTest.php +++ b/tests/Type/TimeValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\TimeValue; /** - * Class \SimpleSAML\Test\Type\TimeValueTest + * Class \SimpleSAML\Test\XML\Type\TimeValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/TokenValueTest.php b/tests/Type/TokenValueTest.php index be81eb3c..a6e9c00d 100644 --- a/tests/Type/TokenValueTest.php +++ b/tests/Type/TokenValueTest.php @@ -10,7 +10,7 @@ use SimpleSAML\XML\Type\TokenValue; /** - * Class \SimpleSAML\Test\Type\TokenValueTest + * Class \SimpleSAML\Test\XML\Type\TokenValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/UnsignedByteValueTest.php b/tests/Type/UnsignedByteValueTest.php index f666bc71..6e356b63 100644 --- a/tests/Type/UnsignedByteValueTest.php +++ b/tests/Type/UnsignedByteValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\UnsignedByteValue; /** - * Class \SimpleSAML\Test\Type\UnsignedByteValueTest + * Class \SimpleSAML\Test\XML\Type\UnsignedByteValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/UnsignedIntValueTest.php b/tests/Type/UnsignedIntValueTest.php index c2e4b0bc..da23489c 100644 --- a/tests/Type/UnsignedIntValueTest.php +++ b/tests/Type/UnsignedIntValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\UnsignedIntValue; /** - * Class \SimpleSAML\Test\Type\UnsignedIntValueTest + * Class \SimpleSAML\Test\XML\Type\UnsignedIntValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/UnsignedLongValueTest.php b/tests/Type/UnsignedLongValueTest.php index 7d6ed27b..78d32109 100644 --- a/tests/Type/UnsignedLongValueTest.php +++ b/tests/Type/UnsignedLongValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\UnsignedLongValue; /** - * Class \SimpleSAML\Test\Type\UnsignedLongValueTest + * Class \SimpleSAML\Test\XML\Type\UnsignedLongValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/UnsignedShortValueTest.php b/tests/Type/UnsignedShortValueTest.php index 020a08e6..6da2f4a2 100644 --- a/tests/Type/UnsignedShortValueTest.php +++ b/tests/Type/UnsignedShortValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\UnsignedShortValue; /** - * Class \SimpleSAML\Test\Type\UnsignedShortValueTest + * Class \SimpleSAML\Test\XML\Type\UnsignedShortValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/YearMonthValueTest.php b/tests/Type/YearMonthValueTest.php index da27a639..a5280ba2 100644 --- a/tests/Type/YearMonthValueTest.php +++ b/tests/Type/YearMonthValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\YearMonthValue; /** - * Class \SimpleSAML\Test\Type\YearMonthValueTest + * Class \SimpleSAML\Test\XML\Type\YearMonthValueTest * * @package simplesamlphp/xml-common */ diff --git a/tests/Type/YearValueTest.php b/tests/Type/YearValueTest.php index 2e8bc7eb..5ff99e1e 100644 --- a/tests/Type/YearValueTest.php +++ b/tests/Type/YearValueTest.php @@ -11,7 +11,7 @@ use SimpleSAML\XML\Type\YearValue; /** - * Class \SimpleSAML\Test\Type\YearValueTest + * Class \SimpleSAML\Test\XML\Type\YearValueTest * * @package simplesamlphp/xml-common */