Fix various regressions introduced by camel case conversion

[MAILPOET-2635]
This commit is contained in:
Jan Jakeš
2020-01-16 14:26:19 +01:00
committed by Jack Kitterhing
parent d955a9105a
commit 2ef41b56e0
5 changed files with 6 additions and 6 deletions

View File

@ -126,7 +126,7 @@ class ViewInBrowserTest extends \MailPoetTest {
public function testItFailsValidationWhenPreviewIsEnabledButNewsletterHashNotProvided() {
$data = (object)$this->browserPreviewData;
$data->newsletterHash = false;
$data->newsletter_hash = false; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.NotCamelCaps
$data->preview = true;
expect($this->viewInBrowser->_validateBrowserPreviewData($data))->false();
}