Skip to content

Commit

Permalink
fix: update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Aug 13, 2018
1 parent c9eaa70 commit 117c440
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module.exports = function(environment) {
let ENV = {
modulePrefix: 'ember-fundamentals',
modulePrefix: '@mike-works/ember-fundamentals',
environment,
rootURL: '/',
locationType: 'auto',
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/exercise-6-test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from 'qunit';
import moduleForAcceptance from 'ember-fundamentals/tests/helpers/module-for-acceptance';
import moduleForAcceptance from '../helpers/module-for-acceptance';
import require from 'require';

if (
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/exercise7-test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from 'qunit';
import moduleForAcceptance from 'ember-fundamentals/tests/helpers/module-for-acceptance';
import moduleForAcceptance from '../helpers/module-for-acceptance';
import require from 'require';

if (
Expand Down
4 changes: 2 additions & 2 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{{content-for "test-head"}}

<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/ember-fundamentals.css">
<link rel="stylesheet" href="{{rootURL}}assets/@mike-works/ember-fundamentals.css">
<link rel="stylesheet" href="{{rootURL}}assets/test-support.css">

{{content-for "head-footer"}}
Expand All @@ -24,7 +24,7 @@
<script src="/testem.js" integrity=""></script>
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/test-support.js"></script>
<script src="{{rootURL}}assets/ember-fundamentals.js"></script>
<script src="{{rootURL}}assets/@mike-works/ember-fundamentals.js"></script>
<script src="{{rootURL}}assets/tests.js"></script>

{{content-for "body-footer"}}
Expand Down

0 comments on commit 117c440

Please sign in to comment.