mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 02:58:31 -05:00
Replace deprecated assert functions in test files. (#16945)
This commit is contained in:
@@ -80,7 +80,7 @@ function validate(test: TestDefinition, semVerProxy: SymVerProxyTest) {
|
||||
for (const key in test.expected) {
|
||||
const expected = test.expected[key];
|
||||
if (expected) {
|
||||
assert.equal(semVerProxy[key].toString(), expected.toString(), `validation for property ${key} failed.`);
|
||||
assert.strictEqual(semVerProxy[key].toString(), expected.toString(), `validation for property ${key} failed.`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user