Skip to content

Commit ba8f1d3

Browse files
committed
chore(formatting): Clean up spacing at end of lines
1 parent 2e5fe23 commit ba8f1d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/specs/AuthenticationSpec.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ component extends="testbox.system.BaseSpec" {
4444
wireboxMock.$( "getInstance" ).$args( mockedPath ).$results( userServiceMock );
4545

4646
var actual = auth.getUserServicePublic();
47-
47+
4848
expect( actual ).toBe( userServiceMock );
4949
} );
5050

@@ -55,7 +55,7 @@ component extends="testbox.system.BaseSpec" {
5555

5656
auth.getUserServicePublic();
5757
auth.getUserServicePublic();
58-
58+
5959
expect( wireboxMock.$once( "getInstance" ) )
6060
.toBeTrue( "[getInstance] should only have been called once." );
6161
} );
@@ -124,7 +124,7 @@ component extends="testbox.system.BaseSpec" {
124124
} );
125125

126126
it( "returns the user from the request if it exists", function() {
127-
requestStorageMock.$( "exists", true );
127+
requestStorageMock.$( "exists", true );
128128
requestStorageMock.$( "getVar", userMock );
129129

130130
auth.getUser();
@@ -333,4 +333,4 @@ component extends="testbox.system.BaseSpec" {
333333
userServiceMock.$( "retrieveUserByUsername", userMock );
334334
}
335335

336-
}
336+
}

0 commit comments

Comments
 (0)