Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Shorten app id to fit into 32 chars
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Oct 6, 2020
commit 92dd8a46d51392361c532990e11b42abc24a2800
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
More information is available in the Activity documentation.
</description>

<version>2.13.1</version>
<version>2.13.2</version>
<licence>agpl</licence>
<author>Frank Karlitschek</author>
<author>Joas Schilling</author>
Expand Down
4 changes: 2 additions & 2 deletions tests/MailQueueHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class MailQueueHandlerTest extends TestCase {
protected function setUp(): void {
parent::setUp();

$app = self::getUniqueID('MailQueueHandlerTest');
$app = self::getUniqueID('MailQueueHandlerTest', 10);
$this->userManager = $this->createMock(IUserManager::class);
$this->lFactory = $this->createMock(IFactory::class);
$this->config = $this->createMock(IConfig::class);
Expand Down Expand Up @@ -219,7 +219,7 @@ public function testGetItemsForUser(): void {
. ' (`amq_appid`, `amq_subject`, `amq_subjectparams`, `amq_affecteduser`, `amq_timestamp`, `amq_type`, `amq_latest_send`) '
. ' VALUES(?, ?, ?, ?, ?, ?, ?)');

$app = self::getUniqueID('MailQueueHandlerTest');
$app = self::getUniqueID('MailQueueHandlerTest', 10);
for ($i = 0; $i < 15; $i++) {
$query->execute(array($app, 'Test data', 'Param1', 'user1', 150, 'phpunit', 160 + $i));
}
Expand Down