Merge pull request #1690 from mailpoet/tests-fixes
Fix acceptance tests that failed locally [MAILPOET-1694]
This commit is contained in:
@@ -25,7 +25,7 @@ class StatisticsClicks extends Model {
|
||||
return $statistics->save();
|
||||
}
|
||||
|
||||
static function getAllForSubsciber(Subscriber $subscriber) {
|
||||
static function getAllForSubscriber(Subscriber $subscriber) {
|
||||
return static::table_alias('clicks')
|
||||
->select('clicks.id', 'id')
|
||||
->select('newsletter_rendered_subject')
|
||||
|
@@ -30,7 +30,7 @@ class StatisticsNewsletters extends Model {
|
||||
);
|
||||
}
|
||||
|
||||
static function getAllForSubsciber(Subscriber $subscriber) {
|
||||
static function getAllForSubscriber(Subscriber $subscriber) {
|
||||
return static::table_alias('statistics')
|
||||
->select('statistics.newsletter_id', 'newsletter_id')
|
||||
->select('newsletter_rendered_subject')
|
||||
|
Reference in New Issue
Block a user