File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,12 @@ Navigate to `Introduction\AboutAssertions.Koans.ps1`. Near the top you'll see:
134134``` powershell
135135It 'is a simple comparison' {
136136 # Some truths are absolute.
137- '__' | Should -Be 'True!'
137+ $____ | Should -Be $true
138138}
139139```
140140
141- The ` __ ` represents a blank for you to fill, and ` | Should -Be 'True!' ` shows the expected result.
142- To pass this koan you need to replace ` __ ` with ` True! ` , like this : ` 'True!' | Should -Be 'True!' ` .
141+ The ` $___ ` represents a blank for you to fill, and ` | Should -Be $true ` shows the expected result.
142+ To pass this koan you need to replace ` $____ ` with ` $true ` to fulfil the assertion : ` $true | Should -Be $true `
143143
144144#### 3. Run ` Show-Karma ` again to see how you did
145145
You can’t perform that action at this time.
0 commit comments