Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
meirish committed Oct 1, 2019
1 parent 471f7ae commit d8dbaf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/app/components/auth-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default Component.extend(DEFAULTS, {
'selectedAuthIsPath',
function() {
let { wrappedToken, methods, selectedAuth, selectedAuthIsPath: keyIsPath } = this;
if (!methods && !this.wrappedToken) {
if (!methods && !wrappedToken) {
return {};
}
if (keyIsPath) {
Expand Down
3 changes: 1 addition & 2 deletions ui/tests/acceptance/wrapped-token-test.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import { currentURL, visit, settled } from '@ember/test-helpers';
import { currentURL } from '@ember/test-helpers';
import { create } from 'ember-cli-page-object';
import auth from 'vault/tests/pages/auth';
import consoleClass from 'vault/tests/pages/components/console/ui-panel';
import { next } from '@ember/runloop';

const consoleComponent = create(consoleClass);

Expand Down

0 comments on commit d8dbaf6

Please sign in to comment.