Skip to content

Commit 01b49c4

Browse files
committed
default workspace name is configurable
1 parent 690962f commit 01b49c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/04_Connecting/RepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testDefaultWorkspace()
3333
$repository = self::$loader->getRepository();
3434
$session = $repository->login(self::$loader->getCredentials());
3535
$this->assertInstanceOf('PHPCR\SessionInterface', $session);
36-
$this->assertEquals('default', $session->getWorkspace()->getName());
36+
$this->assertEquals(self::$loader->getDefaultWorkspaceName(), $session->getWorkspace()->getName());
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)