Bug 1729057 - Treat case when suite is undefined (#7262)

This commit is contained in:
beatrice-acasandrei 2021-09-06 18:31:49 +03:00 коммит произвёл GitHub
Родитель 83d78d836a
Коммит a22fc05525
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -108,9 +108,9 @@ export class Perfdocs {
*/
constructor(framework, suite, platform = null, title = null) {
this.framework = framework;
this.suite = suite;
this.suite = suite || '';
this.platform = platform;
this.title = title;
this.title = title || '';
this.url = null;
this.remainingTestName = null;
}