Skip to content

Commit

Permalink
correcting rmvStep change step test
Browse files Browse the repository at this point in the history
  • Loading branch information
josefbogar committed Nov 21, 2024
1 parent 8ea8db2 commit dbf457d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/planner/src/app/diver/diver.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ describe('DiverComponent', () => {
});

xit('should change rmvStep when switching to imperial units', () => {
expect(component.rmvStep).toBe(1);
expect(component.rmvStep).toBe(0.1);
unitConversion.imperialUnits = true;
fixture.detectChanges();
expect(component.rmvStep).toBe(0.1);
expect(component.rmvStep).toBe(0.001);
});
});

0 comments on commit dbf457d

Please sign in to comment.