Skip to content

Commit

Permalink
fix: pdate package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Aug 28, 2018
1 parent 4dd571b commit 3caa039
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/acceptance/exercise-6-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import moduleForAcceptance from '../helpers/module-for-acceptance';
import require from 'require';

if (
require.has('ember-fundamentals/routes/course') &&
require.has('@mike-works/ember-fundamentals/routes/course') &&
!require.has('ember-network/fetch') &&
!require.has('fetch')
) {
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/exercise7-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import moduleForAcceptance from '../helpers/module-for-acceptance';
import require from 'require';

if (
require.has('ember-fundamentals/routes/course') &&
require.has('@mike-works/ember-fundamentals/routes/course') &&
(require.has('ember-network/fetch') || require.has('fetch'))
) {
moduleForAcceptance('Exercise 7 | Async Data');
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/course-list-item-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import require from 'require';

if (require.has('ember-fundamentals/components/course-list-item')) {
if (require.has('@mike-works/ember-fundamentals/components/course-list-item')) {
moduleForComponent(
'course-list-item',
'Exercise 3 | course-list-item component',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/two-inputs-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import require from 'require';

if (require.has('ember-fundamentals/components/two-inputs')) {
if (require.has('@mike-works/ember-fundamentals/components/two-inputs')) {
moduleForComponent('two-inputs', 'Integration | Component | two inputs', {
integration: true
});
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/placeholder-url-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ moduleForComponent('placeholder-url', 'helper:placeholder-url', {
integration: true
});

if (require.has('ember-fundamentals/helpers/placeholder-url')) {
if (require.has('@mike-works/ember-fundamentals/helpers/placeholder-url')) {
// Replace this with your real tests.
test('conventional usage', function(assert) {
this.render(hbs`{{placeholder-url w=300 h=302}}`);
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/utils/course-test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { module, test } from 'qunit';
import require from 'require';

if (require.has('ember-fundamentals/utils/course')) {
const Course = require('ember-fundamentals/utils/course').default;
if (require.has('@mike-works/ember-fundamentals/utils/course')) {
const Course = require('@mike-works/ember-fundamentals/utils/course').default;

module('Exercise 1 | Modeling Data');

Expand Down

0 comments on commit 3caa039

Please sign in to comment.