diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2025-05-14 20:10:34 +0200 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2025-05-16 17:20:12 +0200 |
commit | 9fdc9a2b9972bb8f46eab84e887477c6a21cd5f5 (patch) | |
tree | 73604d2d49dd9cc0d06a163946bbf56394b2ae71 /tests/lib/DB | |
parent | b9480f44dc1b652210411ea7b939f462bc9389d4 (diff) | |
download | nextcloud-server-feat/noid/lexicon-migrate-keys.tar.gz nextcloud-server-feat/noid/lexicon-migrate-keys.zip |
feat(lexicon): migrate config key/valuefeat/noid/lexicon-migrate-keys
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'tests/lib/DB')
-rw-r--r-- | tests/lib/DB/AdapterTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/DB/AdapterTest.php b/tests/lib/DB/AdapterTest.php index 99b7cf4e099..1b8c38c0edc 100644 --- a/tests/lib/DB/AdapterTest.php +++ b/tests/lib/DB/AdapterTest.php @@ -14,7 +14,7 @@ class AdapterTest extends TestCase { public function setUp(): void { $this->connection = \OC::$server->getDatabaseConnection(); - $this->appId = uniqid('test_db_adapter', true); + $this->appId = substr(uniqid('test_db_adapter', true), 0, 32); } public function tearDown(): void { |