Skip to content

Commit 5f64354

Browse files
authored
Merge pull request github#13353 from jketema/expecation
Fix typo in spelling of expectation
2 parents 05e5ebe + 7b17b92 commit 5f64354

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

csharp/ql/test/TestUtilities/InlineFlowTest.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* ```
1515
*
16-
* To declare expecations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
16+
* To declare expectations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
1717
* Example of the corresponding test file, e.g. Test.cs
1818
* ```csharp
1919
* public class Test

go/ql/test/TestUtilities/InlineFlowTest.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* import TestUtilities.InlineFlowTest
88
* ```
99
*
10-
* To declare expecations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
10+
* To declare expectations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
1111
* Example of the corresponding test file, e.g. Test.java
1212
* ```go
1313
* public class Test {

java/ql/test/TestUtilities/InlineFlowTest.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* import TestUtilities.InlineFlowTest
88
* ```
99
*
10-
* To declare expecations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
10+
* To declare expectations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
1111
* Example of the corresponding test file, e.g. Test.java
1212
* ```java
1313
* public class Test {

python/ql/test/experimental/meta/ConceptsTest.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ class HttpServerHttpResponseTest extends InlineExpectationsTest {
317317
location = response.getLocation() and
318318
element = response.toString() and
319319
// Ensure that an expectation value such as "mimetype=text/html; charset=utf-8" is parsed as a
320-
// single expectation with tag mimetype, and not as two expecations with tags mimetype and
320+
// single expectation with tag mimetype, and not as two expectations with tags mimetype and
321321
// charset.
322322
(
323323
if exists(response.getMimetype().indexOf(" "))

ruby/ql/test/TestUtilities/InlineFlowTest.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* select sink, source, sink, "$@", source, source.toString()
1212
* ```
1313
*
14-
* To declare expecations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
14+
* To declare expectations, you can use the $hasTaintFlow or $hasValueFlow comments within the test source files.
1515
* Example of the corresponding test file, e.g. test.rb
1616
* ```rb
1717
* s = source(1)

0 commit comments

Comments
 (0)