Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
allthesignals committed Aug 22, 2018
1 parent 94a5fa0 commit da5820e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion addon/components/labs-layers.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export default class LayersComponent extends Component {
const hoveredFeature = this.get('hoveredFeature');

let isNew = true;
if (!!hoveredFeature) {
if (hoveredFeature) {
if ((feature.id === hoveredFeature.id) && (feature.layer.id === hoveredFeature.layer.id)) {
isNew = false;
}
Expand Down
2 changes: 0 additions & 2 deletions tests/dummy/app/adapters/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import config from '../config/environment';
const { host } = config;
const { JSONAPIAdapter } = DS;

console.log(host);

export default class ApplicationAdapter extends JSONAPIAdapter {
host = host;
namespace = 'v1';
Expand Down

0 comments on commit da5820e

Please sign in to comment.