From 9ed8e4a35bf72e1050ad965d8dfa3afde9c8bd88 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 22 Jan 2015 10:12:11 +1100 Subject: [PATCH] remove names from optional async tests --- .../optional-async-to-generator/statement/expected.js | 2 +- .../optional-bluebird-coroutines/statement/expected.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fixtures/transformation/optional-async-to-generator/statement/expected.js b/test/fixtures/transformation/optional-async-to-generator/statement/expected.js index edd71bbb3a..faf8868b28 100644 --- a/test/fixtures/transformation/optional-async-to-generator/statement/expected.js +++ b/test/fixtures/transformation/optional-async-to-generator/statement/expected.js @@ -37,6 +37,6 @@ var _asyncToGenerator = function (fn) { }; }; -var foo = _asyncToGenerator(function* foo() { +var foo = _asyncToGenerator(function* () { var wat = yield bar(); }); diff --git a/test/fixtures/transformation/optional-bluebird-coroutines/statement/expected.js b/test/fixtures/transformation/optional-bluebird-coroutines/statement/expected.js index c5dbaaf5d1..ed68858b19 100644 --- a/test/fixtures/transformation/optional-bluebird-coroutines/statement/expected.js +++ b/test/fixtures/transformation/optional-bluebird-coroutines/statement/expected.js @@ -2,6 +2,6 @@ var _bluebird = require("bluebird"); -var foo = _bluebird.coroutine(function* foo() { +var foo = _bluebird.coroutine(function* () { var wat = yield bar(); });