Skip to content

Commit f772626

Browse files
author
Robert Jackson
committed
Fix typo in fixture data for subject tests.
1 parent 42b5174 commit f772626

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

__testfixtures__/ember-qunit-codemod/subject.input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ moduleFor('service:foo', 'Unit | Service | Foo', {
7575
});
7676

7777
test('can use service', function (assert) {
78-
this.servicer.something();
78+
this.service.something();
7979
});

__testfixtures__/ember-qunit-codemod/subject.output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ module('Unit | Service | Foo', function(hooks) {
7979
});
8080

8181
test('can use service', function (assert) {
82-
this.servicer.something();
82+
this.service.something();
8383
});
8484
});

0 commit comments

Comments
 (0)