Skip to content

Commit be60b0a

Browse files
committed
test: use strictEqual assertions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2fc9c1d commit be60b0a

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

lib/node_modules/@stdlib/lapack/base/iladlc/test/test.iladlc.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ tape( 'the function returns an invalid index (-1) when M is less than or equal t
148148
A = new Float64Array( data.A );
149149
out = iladlc( data.order, 0, data.N, A, data.LDA );
150150

151-
t.deepEqual( out, -1, 'returns expected value' );
151+
t.strictEqual( out, -1, 'returns expected value' );
152152
t.end();
153153
});
154154

@@ -162,7 +162,7 @@ tape( 'the function returns an invalid index (-1) when N is less than or equal t
162162
A = new Float64Array( data.A );
163163
out = iladlc( data.order, data.M, 0, A, data.LDA );
164164

165-
t.deepEqual( out, -1, 'returns expected value' );
165+
t.strictEqual( out, -1, 'returns expected value' );
166166
t.end();
167167
});
168168

@@ -176,7 +176,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
176176
A = new Float64Array( data.A );
177177
out = iladlc( data.order, data.M, data.N, A, data.LDA );
178178

179-
t.deepEqual( out, data.expected, 'returns expected value' );
179+
t.strictEqual( out, data.expected, 'returns expected value' );
180180
t.end();
181181
});
182182

@@ -190,7 +190,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
190190
A = new Float64Array( data.A );
191191
out = iladlc( data.order, data.M, data.N, A, data.LDA );
192192

193-
t.deepEqual( out, data.expected, 'returns expected value' );
193+
t.strictEqual( out, data.expected, 'returns expected value' );
194194
t.end();
195195
});
196196

@@ -204,7 +204,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
204204
A = new Float64Array( data.A );
205205
out = iladlc( data.order, data.M, data.N, A, data.LDA );
206206

207-
t.deepEqual( out, data.expected, 'returns expected value' );
207+
t.strictEqual( out, data.expected, 'returns expected value' );
208208
t.end();
209209
});
210210

@@ -218,6 +218,6 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
218218
A = new Float64Array( data.A );
219219
out = iladlc( data.order, data.M, data.N, A, data.LDA );
220220

221-
t.deepEqual( out, data.expected, 'returns expected value' );
221+
t.strictEqual( out, data.expected, 'returns expected value' );
222222
t.end();
223223
});

lib/node_modules/@stdlib/lapack/base/iladlc/test/test.ndarray.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
7878
A = new Float64Array( data.A );
7979
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
8080

81-
t.deepEqual( out, data.expected, 'returns expected value' );
81+
t.strictEqual( out, data.expected, 'returns expected value' );
8282
t.end();
8383
});
8484

@@ -92,7 +92,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
9292
A = new Float64Array( data.A );
9393
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
9494

95-
t.deepEqual( out, data.expected, 'returns expected value' );
95+
t.strictEqual( out, data.expected, 'returns expected value' );
9696
t.end();
9797
});
9898

@@ -106,7 +106,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
106106
A = new Float64Array( data.A );
107107
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
108108

109-
t.deepEqual( out, data.expected, 'returns expected value' );
109+
t.strictEqual( out, data.expected, 'returns expected value' );
110110
t.end();
111111
});
112112

@@ -120,7 +120,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
120120
A = new Float64Array( data.A );
121121
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
122122

123-
t.deepEqual( out, data.expected, 'returns expected value' );
123+
t.strictEqual( out, data.expected, 'returns expected value' );
124124
t.end();
125125
});
126126

@@ -134,7 +134,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
134134
A = new Float64Array( data.A );
135135
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
136136

137-
t.deepEqual( out, data.expected, 'returns expected value' );
137+
t.strictEqual( out, data.expected, 'returns expected value' );
138138
t.end();
139139
});
140140

@@ -148,7 +148,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
148148
A = new Float64Array( data.A );
149149
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
150150

151-
t.deepEqual( out, data.expected, 'returns expected value' );
151+
t.strictEqual( out, data.expected, 'returns expected value' );
152152
t.end();
153153
});
154154

@@ -162,7 +162,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
162162
A = new Float64Array( data.A );
163163
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
164164

165-
t.deepEqual( out, data.expected, 'returns expected value' );
165+
t.strictEqual( out, data.expected, 'returns expected value' );
166166
t.end();
167167
});
168168

@@ -176,7 +176,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
176176
A = new Float64Array( data.A );
177177
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
178178

179-
t.deepEqual( out, data.expected, 'returns expected value' );
179+
t.strictEqual( out, data.expected, 'returns expected value' );
180180
t.end();
181181
});
182182

@@ -190,7 +190,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
190190
A = new Float64Array( data.A );
191191
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
192192

193-
t.deepEqual( out, data.expected, 'returns expected value' );
193+
t.strictEqual( out, data.expected, 'returns expected value' );
194194
t.end();
195195
});
196196

@@ -204,7 +204,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
204204
A = new Float64Array( data.A );
205205
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
206206

207-
t.deepEqual( out, data.expected, 'returns expected value' );
207+
t.strictEqual( out, data.expected, 'returns expected value' );
208208
t.end();
209209
});
210210

@@ -218,7 +218,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
218218
A = new Float64Array( data.A );
219219
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
220220

221-
t.deepEqual( out, data.expected, 'returns expected value' );
221+
t.strictEqual( out, data.expected, 'returns expected value' );
222222
t.end();
223223
});
224224

@@ -232,7 +232,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
232232
A = new Float64Array( data.A );
233233
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
234234

235-
t.deepEqual( out, data.expected, 'returns expected value' );
235+
t.strictEqual( out, data.expected, 'returns expected value' );
236236
t.end();
237237
});
238238

@@ -246,7 +246,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
246246
A = new Float64Array( data.A );
247247
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
248248

249-
t.deepEqual( out, data.expected, 'returns expected value' );
249+
t.strictEqual( out, data.expected, 'returns expected value' );
250250
t.end();
251251
});
252252

@@ -260,7 +260,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
260260
A = new Float64Array( data.A );
261261
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
262262

263-
t.deepEqual( out, data.expected, 'returns expected value' );
263+
t.strictEqual( out, data.expected, 'returns expected value' );
264264
t.end();
265265
});
266266

@@ -274,7 +274,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
274274
A = new Float64Array( data.A );
275275
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
276276

277-
t.deepEqual( out, data.expected, 'returns expected value' );
277+
t.strictEqual( out, data.expected, 'returns expected value' );
278278
t.end();
279279
});
280280

@@ -288,7 +288,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
288288
A = new Float64Array( data.A );
289289
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
290290

291-
t.deepEqual( out, data.expected, 'returns expected value' );
291+
t.strictEqual( out, data.expected, 'returns expected value' );
292292
t.end();
293293
});
294294

@@ -302,7 +302,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
302302
A = new Float64Array( data.A );
303303
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
304304

305-
t.deepEqual( out, data.expected, 'returns expected value' );
305+
t.strictEqual( out, data.expected, 'returns expected value' );
306306
t.end();
307307
});
308308

@@ -316,7 +316,7 @@ tape( 'the function returns the expected zero-based index of the last non-zero c
316316
A = new Float64Array( data.A );
317317
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
318318

319-
t.deepEqual( out, data.expected, 'returns expected value' );
319+
t.strictEqual( out, data.expected, 'returns expected value' );
320320
t.end();
321321
});
322322

@@ -330,7 +330,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
330330
A = new Float64Array( data.A );
331331
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
332332

333-
t.deepEqual( out, data.expected, 'returns expected value' );
333+
t.strictEqual( out, data.expected, 'returns expected value' );
334334
t.end();
335335
});
336336

@@ -344,6 +344,6 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
344344
A = new Float64Array( data.A );
345345
out = iladlr( data.M, data.N, A, data.strideA1, data.strideA2, data.offsetA );
346346

347-
t.deepEqual( out, data.expected, 'returns expected value' );
347+
t.strictEqual( out, data.expected, 'returns expected value' );
348348
t.end();
349349
});

0 commit comments

Comments
 (0)