File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ describe("HTTP Client", function (): void {
110
110
const client = createClient ( ) ;
111
111
const checkout = new CheckoutAPI ( client ) ;
112
112
113
- const expectedUserAgent = LibraryConstants . LIB_NAME + `/` + LibraryConstants . LIB_VERSION ;
113
+ const expectedUserAgent = ` ${ LibraryConstants . LIB_NAME } / ${ LibraryConstants . LIB_VERSION } ` ;
114
114
const expectedLibraryName = LibraryConstants . LIB_NAME ;
115
115
const expectedLibraryVersion = LibraryConstants . LIB_VERSION ;
116
116
@@ -147,7 +147,7 @@ describe("HTTP Client", function (): void {
147
147
client . config . applicationName = "testApp" ;
148
148
const checkout = new CheckoutAPI ( client ) ;
149
149
150
- const expectedUserAgent = `testApp ` + LibraryConstants . LIB_NAME + `/` + LibraryConstants . LIB_VERSION ; // include applicationName too
150
+ const expectedUserAgent = `testApp ${ LibraryConstants . LIB_NAME } / ${ LibraryConstants . LIB_VERSION } ` ; // include applicationName too
151
151
const expectedLibraryName = LibraryConstants . LIB_NAME ;
152
152
const expectedLibraryVersion = LibraryConstants . LIB_VERSION ;
153
153
You can’t perform that action at this time.
0 commit comments