Skip to content

Commit 2c97031

Browse files
committed
fix tests
1 parent 3c9ff91 commit 2c97031

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/components/releases/how-to-install-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,24 @@ module('Integration | Component | releases/how-to-install', function (hooks) {
3030
.dom('[data-test-terminal-code]')
3131
.hasText(
3232
[
33-
'# Install Ember Data 5.2.0:',
34-
'npm install --save-dev ember-data@~5.2.0',
33+
'# Install Ember Data 5.3.0:',
34+
'npm install --save-dev ember-data@~5.3.0',
3535
].join(' '),
3636
'We see the correct code.'
3737
);
3838

3939
assert
4040
.dom('[data-test-field="More Information"]')
4141
.hasText(
42-
'Read the changelog for Ember Data 5.2.0.',
42+
'Read the changelog for Ember Data 5.3.0.',
4343
'We see the correct description for more information.'
4444
);
4545

4646
assert
4747
.dom('[data-test-link="Changelog"]')
4848
.hasAttribute(
4949
'href',
50-
'https://github.com/emberjs/data/blob/v5.2.0/CHANGELOG.md',
50+
'https://github.com/emberjs/data/blob/v5.3.0/CHANGELOG.md',
5151
'We see the correct URL for the changelog.'
5252
);
5353
});

0 commit comments

Comments
 (0)