We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa5657 commit 7d51512Copy full SHA for 7d51512
1 file changed
dsc/tests/dsc_functions.tests.ps1
@@ -416,7 +416,6 @@ Describe 'tests for function expressions' {
416
@{ expression = "[lastIndexOf(createArray(createArray('a','b'), createArray('c','d'), createArray('a','b')), createArray('a','b'))]"; expected = 2 }
417
@{ expression = "[lastIndexOf(createArray(createObject('name','John'), createObject('name','Jane'), createObject('name','John')), createObject('name','John'))]"; expected = 2 }
418
@{ expression = "[lastIndexOf(createArray(), 'test')]"; expected = -1 }
419
- @{ expression = "[lastIndexOf(createArray(createArray(1,2), createArray(3, createArray(4)), createArray(1,2)), createArray(1,2))]"; expected = 2 }
420
@{ expression = "[lastIndexOf(createArray(createObject('a',1,'b',2), createObject('b',2,'a',1)), createObject('a',1,'b',2))]"; expected = 1 }
421
@{ expression = "[lastIndexOf(createArray('1','2','3'), 1)]"; expected = -1 }
422
@{ expression = "[lastIndexOf(createArray(1,2,3), '1')]"; expected = -1 }
0 commit comments