diff --git a/tests/cases/unittests/transpile.ts b/tests/cases/unittests/transpile.ts
index c8025bfc0a2..6c88c2558fc 100644
--- a/tests/cases/unittests/transpile.ts
+++ b/tests/cases/unittests/transpile.ts
@@ -1,9 +1,5 @@
///
-interface ObjectConstructor {
- assign(target: T, source: U): T & U;
-}
-
namespace ts {
describe("Transpile", () => {
@@ -102,7 +98,7 @@ namespace ts {
test(input, {
expectedOutput: output,
options: {
- compilerOptions: Object.assign({ module: ModuleKind.CommonJS, newLine: NewLineKind.CarriageReturnLineFeed }, options),
+ compilerOptions: extend(options, { module: ModuleKind.CommonJS, newLine: NewLineKind.CarriageReturnLineFeed }),
fileName: "input.js",
reportDiagnostics: true
}