Sync test data changes

This commit is contained in:
Jacob Wallraff
2023-02-01 15:48:19 -08:00
parent 7f69f0dcbf
commit 9d93f919d3
104 changed files with 1091 additions and 719 deletions
@@ -1,6 +1,4 @@
include-source: false # Drop file/line/col from output
skip:
- TypeScript
---
on: push
jobs:
@@ -12,6 +10,14 @@ jobs:
dot: .
single-quoted-number: '8'
double-quoted-number: "9"
hex-number: 0xCB2431
hex-string: "0xCB2431"
# binary-number: 0b10100111001 // Binary numbers are not supported by C# at the moment
# binary-string: "0b1111"
octal-number: 0o1234567
octal-string: "0o1234567"
python-version: >-
3.10
---
{
"jobs": [
@@ -46,6 +52,26 @@ jobs:
{
"Key": "double-quoted-number",
"Value": "9"
},
{
"Key": "hex-number",
"Value": "13313073"
},
{
"Key": "hex-string",
"Value": "0xCB2431"
},
{
"Key": "octal-number",
"Value": "342391"
},
{
"Key": "octal-string",
"Value": "0o1234567"
},
{
"Key": "python-version",
"Value": "3.10"
}
]
}