Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Base 10 does not passed to to_string methods since 7be4a2b
Affected languages: - C# (also usage of Convert.ToString() was replaced by ordinal .ToString() in the same commit) - Java - JavaScript - Ruby Fixes [info] - csharp:f"abc{1}%def" *** FAILED *** [info] ""abc" + [(1).ToString(]) + "%def"" was not equal to ""abc" + [Convert.ToString((long) (1), 10]) + "%def"" (TranslatorSpec.scala:686) [info] Analysis: [info] ""abc" + [(1).ToString(]) + "%def"" -> ""abc" + [Convert.ToString((long) (1), 10]) + "%def"" [info] - java:f"abc{1}%def" *** FAILED *** [info] "...c" + Long.toString(1[]) + "%def"" was not equal to "...c" + Long.toString(1[, 10]) + "%def"" (TranslatorSpec.scala:686) [info] Analysis: [info] "...c" + Long.toString(1[]) + "%def"" -> "...c" + Long.toString(1[, 10]) + "%def"" [info] - javascript:f"abc{1}%def" *** FAILED *** [info] "...abc" + (1).toString([]) + "%def"" was not equal to "...abc" + (1).toString([10]) + "%def"" (TranslatorSpec.scala:686) [info] Analysis: [info] "...abc" + (1).toString([]) + "%def"" -> "...abc" + (1).toString([10]) + "%def"" [info] - ruby:f"abc{1}%def" *** FAILED *** [info] ""abc" + 1.to_s[] + "%def"" was not equal to ""abc" + 1.to_s[(10)] + "%def"" (TranslatorSpec.scala:686) [info] Analysis: [info] ""abc" + 1.to_s[] + "%def"" -> ""abc" + 1.to_s[(10)] + "%def""
- Loading branch information