Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kaitai-io/kaitai_struct_compiler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bfff57298974e8f0ef81cb8e8676dfb5fbe09122
Choose a base ref
..
head repository: kaitai-io/kaitai_struct_compiler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 23de295a3bb446e98bb5f7641d3874c3b4b19a62
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 jvm/src/test/scala/io/kaitai/struct/translators/TranslatorSpec.scala
Original file line number Diff line number Diff line change
@@ -693,7 +693,7 @@ class TranslatorSpec extends AnyFunSuite {
PerlCompiler -> "\"abc\" . sprintf('%d', 1) . \"\\%def\"",
PHPCompiler -> "\"abc\" . strval(1) . \"%def\"",
PythonCompiler -> "u\"abc\" + str(1) + u\"%def\"",
RubyCompiler -> "\"abc\" + 1.to_s() + \"%def\"",
RubyCompiler -> "\"abc\" + 1.to_s + \"%def\"",
))

/**