diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-05 16:29:41 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-05 16:56:00 -0400 |
| commit | b7de15caa342fd81fb203015e2fd22a82e523342 (patch) | |
| tree | 9224c1213337d8e834b46e7d19bcf5492838246a /tests | |
| parent | 90a1b0ec4b5a0630be329d086f4c08a7c54a74e7 (diff) | |
Clarify `strconv.append_*` to `strconv.write_*`
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/math/test_core_math.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/math/test_core_math.odin b/tests/core/math/test_core_math.odin index 5797cb4ea..009e3fedd 100644 --- a/tests/core/math/test_core_math.odin +++ b/tests/core/math/test_core_math.odin @@ -1238,7 +1238,7 @@ test_count_digits :: proc(t: ^testing.T) { buf: [64]u8 for n in 0..<i64(base*base*base) { count := math.count_digits_of_base(n, base) - str := strconv.append_int(buf[:], n, base) + str := strconv.write_int(buf[:], n, base) if !testing.expectf(t, len(str) == count, "decimal %i in base-%i digit count is %i, does not match length %i of %q", |