Skip to content

Commit

Permalink
CI: Fix a script error from the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jan 25, 2025
1 parent 22a2273 commit 2049035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestBase.gd
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func _run_subscript(path: String, arguments: PackedStringArray) -> String:

var output := []
OS.execute(exec_path, exec_args, output, true)
var raw_output := output[0]
var raw_output: String = output[0]

# Strip ANSI escape sequences (seem to be injected on macOS specifically).
# Roughly based on https://github.com/chalk/ansi-regex. We can't use \u unicode escapes,
Expand Down

0 comments on commit 2049035

Please sign in to comment.