Skip to content

Commit 8723e32

Browse files
committed
fix: update DSN in Oracle test classes for compatibility with new database configuration.
1 parent 4084c3e commit 8723e32

11 files changed

+11
-11
lines changed

tests/oracle/CacheManagementTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class CacheManagementTest extends AbstractCacheManagement
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/ExceptionHandlingTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class ExceptionHandlingTest extends AbstractExceptionHandling
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/ExtensibilityTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class ExtensibilityTest extends AbstractExtensibility
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/NodeAppendTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class NodeAppendTest extends AbstractNodeAppend
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/NodeDeleteTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class NodeDeleteTest extends AbstractNodeDelete
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/NodeInsertTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class NodeInsertTest extends AbstractNodeInsert
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/NodePrependTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class NodePrependTest extends AbstractNodePrepend
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/NodeStateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class NodeStateTest extends AbstractNodeState
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/QueryBehaviorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class QueryBehaviorTest extends AbstractQueryBehavior
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

tests/oracle/TreeTraversalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class TreeTraversalTest extends AbstractTreeTraversal
1212
{
1313
protected string $driverName = 'oci';
14-
protected string|null $dsn = 'oci:dbname=localhost/XE;charset=AL32UTF8;';
14+
protected string|null $dsn = 'oci:dbname=localhost/FREEPDB1;charset=AL32UTF8;';
1515
protected string $password = 'root';
1616
protected string $username = 'system';
1717
}

0 commit comments

Comments
 (0)