test: use canonical nested library imports

This commit is contained in:
2026-08-13 02:51:00 +09:00
parent cc6799c3b1
commit 10d24a3237
10 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
package base32_test;
import base32;
import encoding.base32;
fn putstr(s: str, into: []u8, off: i32) i32 = {
let i: i32 = 0;

View File

@@ -8,7 +8,7 @@
package base64_test;
import base64;
import encoding.base64;
import bytes;
import errors;
import io;