Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Feb 8, 2024
1 parent 4cce548 commit 3e99cb5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"cycle/database": "^2.8",
"cycle/database": "^2.8.1",
"doctrine/instantiator": "^1.3.1 || ^2.0",
"spiral/core": "^2.8 || ^3.0"
},
Expand Down
3 changes: 1 addition & 2 deletions tests/ORM/Functional/Driver/Common/GeneratedColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public function setUp(): void
],
],
]));
$this->logger->display();
}

public function testPersist(): void
Expand Down Expand Up @@ -128,5 +127,5 @@ protected function storeEntity(ORMInterface $orm, Transaction\Tuple $tuple, bool
};
}

abstract function createTables(): void;
abstract public function createTables(): void;
}
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ public function testInitRelationFetchOne(): void

public function testCreateUserWithEmbedded(): void
{
$this->logger->display();
$u = new User();
$u->email = '[email protected]';
$u->balance = 900;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class GeneratedColumnTest extends CommonClass

public function createTables(): void
{
$this->logger->display();
$this->getDatabase()->query('DROP SEQUENCE IF EXISTS testSequence1;');
$this->getDatabase()->query('DROP SEQUENCE IF EXISTS testSequence2;');
$this->getDatabase()->query('CREATE SEQUENCE testSequence1 START WITH 1;');
Expand Down

0 comments on commit 3e99cb5

Please sign in to comment.