Skip to content

Commit 59d36d7

Browse files
committed
Fixed error in uuid test
1 parent 0567122 commit 59d36d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/component/task-description/task-description.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('TaskDescriptionComponent', () => {
4242

4343
it('check if UUID is being genenrated', () => {
4444
const testUUID = '00000000-0000-0000-0000-000000000000';
45-
component.currentTask.description = testUUID;
45+
component.currentTask.uuid = testUUID;
4646
fixture.detectChanges();
4747
const HTMLElement: HTMLElement = fixture.nativeElement;
4848
const contentDisplayedinParagraphTag = HTMLElement.querySelectorAll('p')!;

0 commit comments

Comments
 (0)