File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/mongodb-memory-server-core/src/util/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ build environment:
137137 expect ( output ) . toBe ( sysBinaryPath ) ;
138138 } ) ;
139139
140- it ( 'should return and check an SystemBinary and warn version conflict' , async ( ) => {
140+ it ( 'should return and check an SYSTEM_BINARY and warn version conflict' , async ( ) => {
141141 jest . spyOn ( console , 'warn' ) . mockImplementation ( ( ) => void 0 ) ;
142142 // Output taken from mongodb x64 for "ubuntu" version "4.0.25"
143143 // DO NOT INDENT THE TEXT
@@ -165,7 +165,7 @@ build environment:
165165 expect ( console . warn ) . toHaveBeenCalledTimes ( 1 ) ;
166166 } ) ;
167167
168- it ( 'should throw an error if systemBinary is set, but no binary can be found' , async ( ) => {
168+ it ( 'should throw an error if SYSTEM_BINARY is set, but no binary can be found' , async ( ) => {
169169 process . env [ envName ( ResolveConfigVariables . SYSTEM_BINARY ) ] = sysBinaryPath ;
170170 jest . spyOn ( DryMongoBinary , 'locateBinary' ) . mockResolvedValue ( undefined ) ;
171171
You can’t perform that action at this time.
0 commit comments