Commit c72febb0 authored by catch's avatar catch
Browse files

fix: #3552984 MigrateTestBase::display() causes a TypeError if a test fails a migration

By: joachim
By: u7aro
By: priyansu18
(cherry picked from commit ccd5164e)
parent b82be539
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ public function display($message, $type = 'status') {
      $this->migrateMessages[$type][] = $message;
    }
    else {
      $this->assertEquals('status', $type, $message);
      $this->assertEquals('status', $type, (string) $message);
    }
  }