Skip to content

Commit

Permalink
Fixed a few more references
Browse files Browse the repository at this point in the history
  • Loading branch information
DanMonroe committed Feb 15, 2022
1 parent 760d426 commit 68d016c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/integration/components/meta-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module('Integration | meta', function() {
await render(hbs`
<div style="height: 500px;">
<EmberTable data-test-main-table as |t| >
{{#ember-thead api=t columns=columns as |h|}}
{{#ember-thead api=t columns=this.columns as |h|}}
{{#ember-tr api=h as |r|}}
{{#ember-th api=r as |column columnMeta|}}
{{#if columnMeta.wasClicked}}column{{/if}}
Expand Down Expand Up @@ -120,7 +120,7 @@ module('Integration | meta', function() {
await render(hbs`
<div style="height: 500px;">
<EmberTable data-test-main-table as |t| >
{{#ember-thead api=t columns=columns as |h|}}
{{#ember-thead api=t columns=this.columns as |h|}}
{{#ember-tr api=h as |r|}}
{{#ember-th api=r as |column columnMeta|}}
{{#if columnMeta.wasClicked}}column{{/if}}
Expand Down Expand Up @@ -157,7 +157,7 @@ module('Integration | meta', function() {
</div>
<div style="height: 500px;">
<EmberTable data-test-other-table as |t| >
{{#ember-thead api=t columns=columns as |h|}}
{{#ember-thead api=t columns=this.columns as |h|}}
{{#ember-tr api=h as |r|}}
{{#ember-th api=r as |column columnMeta|}}
{{#if columnMeta.wasClicked}}column{{/if}}
Expand Down Expand Up @@ -241,14 +241,14 @@ module('Integration | meta', function() {

await render(hbs`
<EmberTable data-test-main-table as |t| >
{{#ember-thead api=t columns=columns as |h|}}
{{#ember-thead api=t columns=this.columns as |h|}}
{{#ember-tr api=h as |r|}}
{{#ember-th api=r as |column columnMeta rowMeta|}}
{{rowMeta.index}}
{{/ember-th}}
{{/ember-tr}}
{{/ember-thead}}
{{ember-tbody api=t rows=rows}}
{{ember-tbody api=t rows=this.rows}}
</EmberTable>
`);

Expand Down

0 comments on commit 68d016c

Please sign in to comment.