Skip to content

Commit 0feb8b7

Browse files
author
Alexander Bainczyk
committed
fix linting issue
1 parent 2635c7a commit 0feb8b7

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

frontend/src/app/views/test-suite-view/test-suite-view.component.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,12 @@ export class TestSuiteViewComponent implements OnInit, OnDestroy {
282282
modalRef.componentInstance.project = this.project;
283283
modalRef.result.then(_ => {
284284
this.testConfigApi.getAll(this.project.id).subscribe(
285-
testConfigs => {
286-
this.testConfigs = testConfigs;
287-
},
288-
console.error
289-
)}).catch(() => {
285+
testConfigs => {
286+
this.testConfigs = testConfigs;
287+
},
288+
console.error
289+
);
290+
}).catch(() => {
290291
});
291292
}
292293

@@ -370,7 +371,7 @@ export class TestSuiteViewComponent implements OnInit, OnDestroy {
370371
selectTestConfig(config: any): void {
371372
if (config != null) {
372373
this.testConfig = JSON.parse(JSON.stringify(config));
373-
this.testConfig.environment = this.project.environments.find(e => e.id === config.environmentId );
374+
this.testConfig.environment = this.project.environments.find(e => e.id === config.environmentId);
374375
} else {
375376
this.testConfig = null;
376377
}

0 commit comments

Comments
 (0)