Skip to content

Commit

Permalink
fix fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Apr 18, 2017
1 parent 84abb89 commit a560ada
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon/-private/system/relationship-meta.js
@@ -1,6 +1,6 @@
import {singularize} from 'ember-inflector';
import normalizeModelName from './normalize-model-name';
import { runInDebug } from 'ember-data/-private/debug';
import { runInDebug } from 'ember-data/-debug';

export function typeForRelationshipMeta(meta) {
let modelName;
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers/test-in-debug.js
Expand Up @@ -5,8 +5,8 @@ export default function testInDebug() {
let isDebug = false;

// TODO: this should be debug-stripped...
if (require.has('ember-data/-private/debug')) {
require('ember-data/-private/debug').runInDebug(() => isDebug = true);
if (require.has('ember-data/-debug')) {
require('ember-data/-debug').runInDebug(() => isDebug = true);
}

if (isDebug) {
Expand Down

0 comments on commit a560ada

Please sign in to comment.