Skip to content

Commit 6ec2793

Browse files
authored
chore: lint fix (#3044)
Signed-off-by: Akshat Patel <[email protected]>
1 parent c20472b commit 6ec2793

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/number-input/number.component.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ describe("Number", () => {
108108
buttonUp.click();
109109
fixture.detectChanges();
110110
expect(component.value).toEqual(2);
111-
});
111+
});
112112

113113
it("should increment and set value to max if value + step exceeds max", () => {
114114
fixture.detectChanges();
@@ -129,8 +129,8 @@ describe("Number", () => {
129129
component.min = 5;
130130
buttonUp.click();
131131
fixture.detectChanges();
132-
133-
expect(component.value).toBe(5);
132+
133+
expect(component.value).toBe(5);
134134
});
135135

136136
it("should not increment value if max is reached", () => {
@@ -160,8 +160,8 @@ describe("Number", () => {
160160
component.max = 15;
161161
buttonUp.click();
162162
fixture.detectChanges();
163-
164-
expect(component.value).toBe(15);
163+
164+
expect(component.value).toBe(15);
165165
});
166166

167167
it("should decrement and set value to min if value - step is less than min", () => {
@@ -173,7 +173,7 @@ describe("Number", () => {
173173
buttonUp.click();
174174
fixture.detectChanges();
175175
expect(component.value).toEqual(5);
176-
});
176+
});
177177

178178
it("should not decrement value min is reached", () => {
179179
fixture.detectChanges();

src/number-input/number.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default {
3838
control: "radio"
3939
},
4040
// Actions
41-
change: { action: 'changed'}
41+
change: { action: "changed"}
4242
},
4343
component: NumberComponent
4444
} as Meta;

0 commit comments

Comments
 (0)