Skip to content

Commit e24a6f9

Browse files
Merge pull request #189 from ybakos/test_module_description
autocomplete-component.md: Fix test module string description.
2 parents 5802b75 + 4cef936 commit e24a6f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

guides/v3.4.0/tutorial/autocomplete-component.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ import { setupRenderingTest } from 'ember-qunit';
310310
import { render } from '@ember/test-helpers';
311311
import hbs from 'htmlbars-inline-precompile';
312312

313-
module('Integration | Component | rental-listing', function(hooks) {
313+
module('Integration | Component | list-filter', function(hooks) {
314314
setupRenderingTest(hooks);
315315

316316
test('should initially load all listings', async function (assert) {
@@ -349,7 +349,7 @@ import { resolve } from 'rsvp';
349349
const ITEMS = [{city: 'San Francisco'}, {city: 'Portland'}, {city: 'Seattle'}];
350350
const FILTERED_ITEMS = [{city: 'San Francisco'}];
351351

352-
module('Integration | Component | rental-listing', function(hooks) {
352+
module('Integration | Component | list-filter', function(hooks) {
353353
setupRenderingTest(hooks);
354354

355355
test('should initially load all listings', async function (assert) {
@@ -382,7 +382,7 @@ import { resolve } from 'rsvp';
382382
const ITEMS = [{city: 'San Francisco'}, {city: 'Portland'}, {city: 'Seattle'}];
383383
const FILTERED_ITEMS = [{city: 'San Francisco'}];
384384

385-
module('Integration | Component | rental-listing', function(hooks) {
385+
module('Integration | Component | list-filter', function(hooks) {
386386
setupRenderingTest(hooks);
387387

388388
test('should initially load all listings', async function (assert) {
@@ -430,7 +430,7 @@ import { resolve } from 'rsvp';
430430
const ITEMS = [{city: 'San Francisco'}, {city: 'Portland'}, {city: 'Seattle'}];
431431
const FILTERED_ITEMS = [{city: 'San Francisco'}];
432432

433-
module('Integration | Component | rental-listing', function(hooks) {
433+
module('Integration | Component | list-filter', function(hooks) {
434434
setupRenderingTest(hooks);
435435

436436
test('should initially load all listings', async function (assert) {

0 commit comments

Comments
 (0)