Skip to content

Commit

Permalink
Merge pull request #5657 from makepanic/issues/5656
Browse files Browse the repository at this point in the history
fix(blueprints): remove second string argument from transform tests
  • Loading branch information
runspired authored Oct 2, 2018
2 parents 6ecb77f + 11e893e commit c80e7c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

module('transform:<%= dasherizedModuleName %>', '<%= friendlyTestDescription %>', function(hooks) {
module('<%= friendlyTestDescription %>', function(hooks) {
setupTest(hooks);

// Replace this with your real tests.
Expand Down
2 changes: 1 addition & 1 deletion node-tests/fixtures/transform-test/default.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

module('transform:foo', 'Unit | Transform | foo', function(hooks) {
module('Unit | Transform | foo', function(hooks) {
setupTest(hooks);

// Replace this with your real tests.
Expand Down
2 changes: 1 addition & 1 deletion node-tests/fixtures/transform-test/rfc232.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

module('transform:foo', 'Unit | Transform | foo', function(hooks) {
module('Unit | Transform | foo', function(hooks) {
setupTest(hooks);

// Replace this with your real tests.
Expand Down

0 comments on commit c80e7c7

Please sign in to comment.