Skip to content

Commit

Permalink
Fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cah-brian-gantzler committed May 3, 2023
1 parent a033c1b commit b2b6890
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/integration/components/x-tabs-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { module, test } from "qunit";
import { setupRenderingTest } from "ember-qunit";
import { render, settled } from "@ember/test-helpers";
import { set } from "@ember/object";
import hbs from "htmlbars-inline-precompile";

import {
Expand Down Expand Up @@ -35,7 +34,7 @@ module("Integration | Component | x-tabs", function (hooks) {
this.homeTab = 0;
this.homeName = "home";
this.archiveTab = 1;
this.archiveName = 'archive';
this.archiveName = "archive";
});

async function renderTabs() {
Expand Down Expand Up @@ -129,5 +128,4 @@ module("Integration | Component | x-tabs", function (hooks) {
assertInActiveTab(assert, this.homeTab);
assertActiveTab(assert, this.archiveTab);
});

});

0 comments on commit b2b6890

Please sign in to comment.