AboutStringBuilder - Mismatched Variables #367
Labels
Category-Koans
Invoking the Great Doubt
Good First Issue ❇️
Should be quick and easy!
Issue-Bug 🐛
Something's wrong!
Up For Grabs / Hacktoberfest 💻
If it's Up For Grabs, take it and run with it! If not, ask if it's in progress / you can take it.
Mismatched Variables
This has already been addressed in Issue #188, but #188 is closed, and it isn't fixed. On the upside this is the only issue I found in this Koan.
160 $ExpectedCount = $Properties |
161 Measure-Object |
162 Select-Object -ExpandProperty Count
163
164 $PropertyCount | Should -Be $ExpectedPropertyCount
At line 160, $ExpectedCount is initialized
A comparison is made at line 164 with $ExpectedPropertyCount
The variable needs to synchronized.
The text was updated successfully, but these errors were encountered: