Skip to content

Commit f404987

Browse files
committed
Forgot about the old array syntax
1 parent f69eac5 commit f404987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/VObject/Property/VCard/LanguageTagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function testChangeAndSerialize() {
3434
$this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
3535
// This replicates what the vcard converter does and triggered a bug in
3636
// the past.
37-
$result->LANG->setValue(['de']);
37+
$result->LANG->setValue(array('de'));
3838

3939
$this->assertEquals('de', $result->LANG->getValue());
4040

0 commit comments

Comments
 (0)