Skip to content

Commit 3800c75

Browse files
committed
Merge branch 'refs/heads/github-actions-support-20240625'
2 parents 681884a + ff940aa commit 3800c75

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yml

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

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Set up PHP ${{ matrix.php-version }}
2424
uses: shivammathur/setup-php@v2

tests/DatabaseTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testIpv4CountryName() {
3535

3636
$this->assertEquals(
3737
'United States of America',
38-
$records['countryName'],
38+
$records['countryName']
3939
);
4040
}
4141

@@ -54,7 +54,7 @@ public function testIpv6CountryCode() {
5454

5555
$this->assertEquals(
5656
'US',
57-
$records['countryCode'],
57+
$records['countryCode']
5858
);
5959
}
6060

@@ -65,7 +65,7 @@ public function testIpv6CountryName() {
6565

6666
$this->assertEquals(
6767
'United States of America',
68-
$records['countryName'],
68+
$records['countryName']
6969
);
7070
}
7171

tests/RegionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function testRegionCodeField()
1414

1515
$this->assertEquals(
1616
'US-CA',
17-
$region->getRegionCode('US', 'California'),
17+
$region->getRegionCode('US', 'California')
1818
);
1919
}
2020
}

tests/WebServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function testCountryCode() {
2323

2424
$this->assertEquals(
2525
'US',
26-
$records['country_code'],
26+
$records['country_code']
2727
);
2828
}
2929
}

0 commit comments

Comments
 (0)