Skip to content

Commit 3f83b75

Browse files
committed
fix e2e tests
1 parent f446fde commit 3f83b75

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Install prerequisites
4444
run: |
45-
wget -O box.phar https://github.com/humbug/box/releases/download/4.5.1/box.phar
45+
wget -O box.phar https://github.com/humbug/box/releases/download/4.6.2/box.phar
4646
echo "BOX_BIN=$(pwd)/box.phar" >> $GITHUB_ENV
4747
sudo chown -R $(whoami):$(whoami) .
4848

tests/e2e/original/App/Schema/Entity/PostalAddress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class PostalAddress extends ContactPoint
1919
{
2020
/**
21-
* The country. For example, USA. You can also provide the two-letter \[ISO 3166-1 alpha-2 country code\](http://en.wikipedia.org/wiki/ISO\_3166-1).
21+
* The country. Recommended to be in 2-letter \[ISO 3166-1 alpha-2\](http://en.wikipedia.org/wiki/ISO\_3166-1) format, for example "US". For backward compatibility, a 3-letter \[ISO 3166-1 alpha-3\](https://en.wikipedia.org/wiki/ISO\_3166-1\_alpha-3) country code such as "SGP" or a full country name such as "Singapore" can also be used.
2222
*
2323
* @see https://schema.org/addressCountry
2424
*/

tests/e2e/original/App/Schema/Enum/GenderType.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
*/
1414
class GenderType extends Enum
1515
{
16-
/** @var string The female gender. */
17-
public const FEMALE = 'https://schema.org/Female';
18-
1916
/** @var string The male gender. */
2017
public const MALE = 'https://schema.org/Male';
18+
19+
/** @var string The female gender. */
20+
public const FEMALE = 'https://schema.org/Female';
2121
}

0 commit comments

Comments
 (0)