Skip to content
Snippets Groups Projects
Unverified Commit 4fdf7257 authored by Alex Pott's avatar Alex Pott
Browse files

Revert "Issue #2952634 by Sut3kh, alexpott, Rob C, jibran:...

Revert "Issue #2952634 by Sut3kh, alexpott, Rob C, jibran: LegacyMessenger::deleteByType does not delete anything"

This reverts commit cbe0ec99.
parent cbe0ec99
No related branches found
No related tags found
No related merge requests found
...@@ -180,7 +180,7 @@ public function deleteAll() { ...@@ -180,7 +180,7 @@ public function deleteAll() {
public function deleteByType($type) { public function deleteByType($type) {
// Proxy to the Messenger service, if it exists. // Proxy to the Messenger service, if it exists.
if ($messenger = $this->getMessengerService()) { if ($messenger = $this->getMessengerService()) {
return $messenger->deleteByType($type); return $messenger->messagesByType($type);
} }
$messages = static::$messages[$type]; $messages = static::$messages[$type];
......
...@@ -419,7 +419,7 @@ public function testErrorMessagesAreNotChanged() { ...@@ -419,7 +419,7 @@ public function testErrorMessagesAreNotChanged() {
// after calling _file_save_upload_from_form() are correct. // after calling _file_save_upload_from_form() are correct.
$this->assertText($error); $this->assertText($error);
$this->assertRaw('Number of error messages before _file_save_upload_from_form(): 1'); $this->assertRaw('Number of error messages before _file_save_upload_from_form(): 1');
$this->assertRaw('Number of error messages after _file_save_upload_from_form(): 1'); $this->assertRaw('Number of error messages after _file_save_upload_from_form(): 2');
// Test a successful upload with no messages. // Test a successful upload with no messages.
$edit = [ $edit = [
......
...@@ -103,11 +103,6 @@ public function testMessages() { ...@@ -103,11 +103,6 @@ public function testMessages() {
$this->assertCount(4, $messages[MessengerInterface::TYPE_STATUS]); $this->assertCount(4, $messages[MessengerInterface::TYPE_STATUS]);
$this->assertCount(4, $messages[MessengerInterface::TYPE_WARNING]); $this->assertCount(4, $messages[MessengerInterface::TYPE_WARNING]);
$this->assertCount(4, $messages[MessengerInterface::TYPE_ERROR]); $this->assertCount(4, $messages[MessengerInterface::TYPE_ERROR]);
// Test deleteByType().
$this->assertCount(4, $messenger->deleteByType(MessengerInterface::TYPE_WARNING));
$this->assertCount(0, $messenger->messagesByType(MessengerInterface::TYPE_WARNING));
$this->assertCount(4, $messenger->messagesByType(MessengerInterface::TYPE_ERROR));
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment