Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Rule was failing for the case where everything was OK #12

Merged
merged 1 commit into from
Feb 6, 2019

Conversation

jukben
Copy link
Contributor

@jukben jukben commented Feb 6, 2019

That happened because of incorrect for-loop. Added test for this case.

That happened because of uncorrect for loop. Added test for this case.
@@ -96,7 +96,7 @@ class SortFluxDependencies extends Lint.RuleWalker {
formatedSortedIdentifiers
);

for (let i = 0; i <= dependencyNodes.length; i++) {
for (let i = 0; i < dependencyNodes.length; i++) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💥

@jukben jukben requested a review from mauricekleine February 6, 2019 10:42
@jukben jukben merged commit c3efb5e into master Feb 6, 2019
@jukben jukben deleted the fix/sort-flux-dependency branch February 6, 2019 15:00
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants