diff --git a/tests/baselines/reference/covariantCallbacks.js b/tests/baselines/reference/covariantCallbacks.js index 4678c13bf15e4..497a1ff991678 100644 --- a/tests/baselines/reference/covariantCallbacks.js +++ b/tests/baselines/reference/covariantCallbacks.js @@ -72,7 +72,6 @@ function f14(a: AList4, b: BList4) { //// [covariantCallbacks.js] -"use strict"; // Test that callback parameters are related covariantly ; function f1(a, b) { diff --git a/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts b/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts index 4f3e7ecda0d66..462911fb17ac9 100644 --- a/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts +++ b/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts @@ -1,5 +1,4 @@ // @target: es2015 -// @strict: true // Test that callback parameters are related covariantly