Skip to content

Commit

Permalink
style(all): remove space before comma (#2697)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Dec 29, 2023
1 parent bf1a0f6 commit 584bd9a
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion libs/auth/state/src/effects/auth.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';
import { TestScheduler } from 'rxjs/testing';
Expand Down
2 changes: 1 addition & 1 deletion libs/auth/state/src/effects/login.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/auth/state/src/effects/register.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/auth/state/src/effects/reset-password.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/category/driver/magento/src/category.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class DaffMagentoCategoryService implements DaffCategoryServiceInterface
map(([
filterTypes,
categoryAndProducts,
]) => this.transformCategory(categoryAndProducts.data, filterTypes.data, categoryRequest ,this.productConfig.baseMediaUrl)),
]) => this.transformCategory(categoryAndProducts.data, filterTypes.data, categoryRequest,this.productConfig.baseMediaUrl)),
map(result => categoryRequest.filterRequests
? applyFiltersOnResponse(categoryRequest.filterRequests, result)
: result,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ import { UntypedFormControl } from '@angular/forms';
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DisabledQuantityFieldComponent {
control = new UntypedFormControl({ value : '1' , disabled: true });
control = new UntypedFormControl({ value : '1', disabled: true });
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('@daffodil/external-router/routing | DaffExternalRouterExistenceGuard',
).subscribe();

expect(router.config).toEqual([
<DaffRouteWithDataPath>{ path: '/some-resolved/path/with/file-endings.html', component: FakeComponent, daffExternalRouteType: STUB_RESOLVABLE_TYPE , data: {}} ,
<DaffRouteWithDataPath>{ path: '/some-resolved/path/with/file-endings.html', component: FakeComponent, daffExternalRouteType: STUB_RESOLVABLE_TYPE, data: {}},
{ path: '**', redirectTo: '/' },
]);
});
Expand Down Expand Up @@ -219,7 +219,7 @@ describe('@daffodil/external-router/routing | DaffExternalRouterExistenceGuard',
* would result in incorrect resolutions, so we can't safely insert
* them as Angular router redirects.
*/
it(`should NOT add the original route as a redirect to resolved route as
it(`should NOT add the original route as a redirect to resolved route as
@angular/router does not support matching based upon query params which
some drivers may support`, () => {
spyOn(driver, 'resolve').and.returnValue(of({
Expand Down Expand Up @@ -302,7 +302,7 @@ describe('@daffodil/external-router/routing | DaffExternalRouterExistenceGuard',
* would result in incorrect resolutions, so we can't safely insert
* them as Angular router redirects.
*/
it(`should NOT cache the original route as a redirect to the failed resolution path
it(`should NOT cache the original route as a redirect to the failed resolution path
as @angular/router does not support matching based upon query params`, () => {
spyOn(driver, 'resolve').and.returnValue(of({
url: null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/paypal/state/src/effects/paypal.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/product/state/src/effects/best-seller.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion libs/product/state/src/effects/best-seller.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
ofType,
} from '@ngrx/effects';
import {
Observable ,
Observable,
of,
} from 'rxjs';
import {
Expand Down
2 changes: 1 addition & 1 deletion libs/product/state/src/effects/product.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
cold,
} from 'jasmine-marbles';
import {
Observable ,
Observable,
of,
} from 'rxjs';

Expand Down

0 comments on commit 584bd9a

Please sign in to comment.