@@ -7,28 +7,28 @@ class CryptographicOperationTest extends InlineExpectationsTest {
77
88 override string getARelevantTag ( ) {
99 result in [
10- "CryptographicOperation" , "CryptographicOperationInput" , "CryptographicOperationAlgorithm" ,
11- "CryptographicOperationBlockMode"
12- ]
10+ "CryptographicOperation" , "CryptographicOperationInput" , "CryptographicOperationAlgorithm" ,
11+ "CryptographicOperationBlockMode"
12+ ]
1313 }
1414
1515 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
1616 exists ( location .getFile ( ) .getRelativePath ( ) ) and
1717 exists ( Cryptography:: CryptographicOperation cryptoOperation |
1818 location = cryptoOperation .getLocation ( ) and
1919 (
20- element = cryptoOperation .toString ( ) and
21- value = "" and
22- tag = "CryptographicOperation"
23- or
24- element = cryptoOperation .toString ( ) and
25- value = cryptoOperation .getAlgorithm ( ) .getName ( ) and
26- tag = "CryptographicOperationAlgorithm"
27- or
28- element = cryptoOperation .toString ( ) and
29- value = cryptoOperation .getBlockMode ( ) and
30- tag = "CryptographicOperationBlockMode"
31- )
20+ element = cryptoOperation .toString ( ) and
21+ value = "" and
22+ tag = "CryptographicOperation"
23+ or
24+ element = cryptoOperation .toString ( ) and
25+ value = cryptoOperation .getAlgorithm ( ) .getName ( ) and
26+ tag = "CryptographicOperationAlgorithm"
27+ or
28+ element = cryptoOperation .toString ( ) and
29+ value = cryptoOperation .getBlockMode ( ) and
30+ tag = "CryptographicOperationBlockMode"
31+ )
3232 )
3333 }
3434}
0 commit comments