@@ -1176,15 +1176,15 @@ public function testGetOwnerName(): void
11761176 public function testGetOwnerNameWithZeroRepositoryId (): void
11771177 {
11781178 $ this ->expectException (\Exception::class);
1179- $ this ->expectExceptionMessage ('repositoryId is required for Gitea ' );
1179+ $ this ->expectExceptionMessage ('repositoryId is required for this adapter ' );
11801180
11811181 $ this ->vcsAdapter ->getOwnerName ('' , 0 );
11821182 }
11831183
11841184 public function testGetOwnerNameWithoutRepositoryId (): void
11851185 {
11861186 $ this ->expectException (\Exception::class);
1187- $ this ->expectExceptionMessage ('repositoryId is required for Gitea ' );
1187+ $ this ->expectExceptionMessage ('repositoryId is required for this adapter ' );
11881188
11891189 $ this ->vcsAdapter ->getOwnerName ('' );
11901190 }
@@ -1199,7 +1199,7 @@ public function testGetOwnerNameWithInvalidRepositoryId(): void
11991199 public function testGetOwnerNameWithNullRepositoryId (): void
12001200 {
12011201 $ this ->expectException (\Exception::class);
1202- $ this ->expectExceptionMessage ('repositoryId is required for Gitea ' );
1202+ $ this ->expectExceptionMessage ('repositoryId is required for this adapter ' );
12031203
12041204 $ this ->vcsAdapter ->getOwnerName ('' , null );
12051205 }
@@ -1223,9 +1223,9 @@ public function testGetUserWithInvalidUsername(): void
12231223
12241224 public function testGetInstallationRepository (): void
12251225 {
1226- // This method is not applicable for Gitea
1226+ // This method is not applicable for this adapter
12271227 $ this ->expectException (\Exception::class);
1228- $ this ->expectExceptionMessage ('not applicable for Gitea ' );
1228+ $ this ->expectExceptionMessage ('not applicable for this adapter ' );
12291229
12301230 $ this ->vcsAdapter ->getInstallationRepository ('any-repo-name ' );
12311231 }
0 commit comments