Skip to content

Commit 967c095

Browse files
committed
#246 Fix old test
1 parent c5351bf commit 967c095

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Opus/DnbInstituteTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function testRetrieveAllDnbInstitutes()
9191
$dnb_institutes = [];
9292
for ($i = 1; $i <= 3; $i++) {
9393
$dnb_institute = new Opus_DnbInstitute();
94-
$dnb_institute->setName('Forschungsinstitut für Code Coverage Abt. ' + $i);
94+
$dnb_institute->setName('Forschungsinstitut für Code Coverage Abt. ' . $i);
9595
$dnb_institute->setCity('Calisota');
9696
$dnb_institute->store();
9797
$dnb_institutes[] = $dnb_institutes;
@@ -107,7 +107,7 @@ public function testRetrieveGrantors()
107107
$grantors = [];
108108
for ($i = 1; $i <= 10; $i++) {
109109
$dnb_institute = new Opus_DnbInstitute();
110-
$dnb_institute->setName('Forschungsinstitut für Code Coverage Abt. ' + $i);
110+
$dnb_institute->setName('Forschungsinstitut für Code Coverage Abt. ' . $i);
111111
$dnb_institute->setCity('Calisota');
112112
if (0 == ($i % 2)) {
113113
$dnb_institute->setIsGrantor(1);

0 commit comments

Comments
 (0)