Fixing some tests from internal test suite.

This commit is contained in:
Ruben Ayrapetyan
2014-10-15 16:10:26 +04:00
parent efe713f2a9
commit 2d9a8da5c2
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.
assert (glob === 34);
assert (glob === undefined);
var glob = 34
assert (glob === 34);
+1 -1
View File
@@ -14,4 +14,4 @@
var o = {};
asssert(typeof (o.empty) === "undefined");
assert(typeof (o.empty) === "undefined");