You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
("""Updated the script to safely parse the testing SDK branch from the PR body, handling case insensitivity and whitespace.
19
+
(
20
+
"""Updated the script to safely parse the testing SDK branch from the PR body, handling case insensitivity and whitespace.
20
21
21
22
The goal here is to fix the usage of backticks such as in `foo`, and contractions that we've been using such as `we've`
22
23
@@ -26,11 +27,13 @@ def test_parse_sdk_branch():
26
27
27
28
TESTING_SDK_BRANCH = main
28
29
29
-
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.""", "main"),
30
-
30
+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.""",
31
+
"main",
32
+
),
31
33
# Edge cases with markdown and special characters
32
-
("""# PR Title
33
-
34
+
(
35
+
"""# PR Title
36
+
34
37
Some `code` and we've got contractions here.
35
38
36
39
```python
@@ -40,41 +43,39 @@ def test():
40
43
41
44
TESTING_SDK_BRANCH: feature/fix-backticks
42
45
43
-
More text with `inline code` and don't forget contractions.""", "feature/fix-backticks"),
44
-
46
+
More text with `inline code` and don't forget contractions.""",
0 commit comments