update unit test contents

This commit is contained in:
Mohamed Hegazy 2015-01-20 11:03:51 -08:00
parent 01267bc1f1
commit 1b1a45be6b

View File

@ -33,6 +33,6 @@ describe("DocumentRegistry", () => {
compilerOptions.module = ts.ModuleKind.CommonJS;
var f4 = documentRegistry.acquireDocument("file1.ts", compilerOptions, ts.ScriptSnapshot.fromString("var x = 1;"), "1");
assert(f1 !== f4, "Changed module: Expected to have different instances of document");
assert(f3 === f4, "Changed module: Expected to have the same instance of the document");
});
});