Update test name to reflect reality. (#3640)

Originally pointed out by @Kovensky in https://github.com/babel/babel/pull/3635#discussion_r73652441.
This commit is contained in:
Brian Donovan 2016-08-05 07:12:33 -07:00 committed by Henry Zhu
parent 94c05225e5
commit a1c0b5a118

View File

@ -3,7 +3,7 @@ var assert = require("assert");
var expect = require("chai").expect;
suite("es2015 preset", function () {
test("exposes a function", function () {
test("exposes an object", function () {
// Changing this will break compatibility with babel-core < 6.13.x.
expect(typeof es2015).to.equal("object");
});