@@ -12,7 +12,7 @@ class HttpHeaderWriteTest extends InlineExpectationsTest {
1212 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
1313 // Dynamic key-value header:
1414 exists ( HTTP:: HeaderWrite hw |
15- hw .hasLocationInfo ( file , line , _ , _ , _ ) and
15+ hw .hasLocationInfo ( location . getFile ( ) . getAbsolutePath ( ) , location . getStartLine ( ) , location . getStartColumn ( ) , location . getEndLine ( ) , location . getEndColumn ( ) ) and
1616 (
1717 element = hw .getName ( ) .toString ( ) and
1818 value = hw .getName ( ) .toString ( ) and
@@ -26,7 +26,7 @@ class HttpHeaderWriteTest extends InlineExpectationsTest {
2626 or
2727 // Static key, dynamic value header:
2828 exists ( HTTP:: HeaderWrite hw |
29- hw .hasLocationInfo ( file , line , _ , _ , _ ) and
29+ hw .hasLocationInfo ( location . getFile ( ) . getAbsolutePath ( ) , location . getStartLine ( ) , location . getStartColumn ( ) , location . getEndLine ( ) , location . getEndColumn ( ) ) and
3030 (
3131 element = hw .getHeaderName ( ) .toString ( ) and
3232 value = hw .getHeaderName ( ) and
@@ -40,7 +40,7 @@ class HttpHeaderWriteTest extends InlineExpectationsTest {
4040 or
4141 // Static key, static value header:
4242 exists ( HTTP:: HeaderWrite hw |
43- hw .hasLocationInfo ( file , line , _ , _ , _ ) and
43+ hw .hasLocationInfo ( location . getFile ( ) . getAbsolutePath ( ) , location . getStartLine ( ) , location . getStartColumn ( ) , location . getEndLine ( ) , location . getEndColumn ( ) ) and
4444 (
4545 element = hw .getHeaderName ( ) .toString ( ) and
4646 value = hw .getHeaderName ( ) and
0 commit comments