Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Brahmer <[email protected]>
  • Loading branch information
Grotax committed Dec 19, 2024
1 parent 731c25c commit 4ccea46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Migration/Version250200Date20241219085150.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt

$table = $schema->getTable('news_feeds');
if (!$table->hasColumn('next_update_time')) {
$table->addColumn('next_update_time', 'string', [
$table->addColumn('next_update_time', 'integer', [
'notnull' => false
]);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Fetcher/FeedFetcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ private function createFeed($lang = 'de-DE', $url = null)
$feed->setLocation($this->location);
$feed->setUrl($url);
$feed->setAdded($this->time);
$feed->setNextUpdateTime('0')
$feed->setNextUpdateTime(0);

$feed->setFaviconLink('http://anon.google.com');
$this->favicon->expects($this->exactly(1))
Expand Down

0 comments on commit 4ccea46

Please sign in to comment.