Tell us what’s happening:
idk why I can’t finish this lesson
Your code so far
<a target="_blank" href="${forumTopicUrl}${slug}/${id}" class="post-title">${title}</a>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0
Challenge Information:
Learn Asynchronous Programming by Building an fCC Forum Leaderboard - Step 67
ok… I just swapped the attributes like this: “</a class=“post-title” target=”_blank" href=“${forumTopicUrl}${slug}/${id}”>${title}<//a>" and the test passed…
I created an issue for this since the tests shouldn’t be fixed on accepting a particular order for the attributes
opened 08:57PM - 07 Jan 24 UTC
type: bug
help wanted
scope: curriculum
new javascript course
### Describe the Issue
We had a [camper](https://forum.freecodecamp.org/t/learn… -asynchronous-programming-by-building-an-fcc-forum-leaderboard-step-67/662170) on the forum that was unable to pass the [step 67](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/learn-asynchronous-programming-by-building-an-fcc-forum-leaderboard/step-67) tests because the test expect a certain order for the attributes
The tests expect this order
```js
<a class="post-title" target="_blank" href="${forumTopicUrl}${slug}/${id}">${title}</a>
```
But the attributes of `class`, `target` and `href` can be in any order since that is valid code.
So the tests need to be updated so any valid code passes
### Affected Page
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/learn-asynchronous-programming-by-building-an-fcc-forum-leaderboard/step-67
### Your code
see explanation above
### Expected behavior
see explanation above
### Screenshots
_No response_
### System
- Device: [e.g. iPhone 6, Laptop]
- OS: [e.g. iOS 14, Windows 10, Ubuntu 20.04]
- Browser: [e.g. Chrome, Safari]
- Version: [e.g. 22]
### Additional context
_No response_
1 Like
system
Closed
July 8, 2024, 8:59am
4
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.