Skip to content

Commit f32ab37

Browse files
committed
fixing CI issues
1 parent 7cf73ee commit f32ab37

File tree

2 files changed

+2
-1
lines changed
  • test/src
    • in_language_tests/test_programs/storage_vec_iter_tests/src
    • snapshot

2 files changed

+2
-1
lines changed

test/src/in_language_tests/test_programs/storage_vec_iter_tests/src/impls.sw

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ impl TestInstance for RawPtrNewtype {
308308
}
309309

310310
impl AbiEncode for RawPtrNewtype {
311+
fn is_memcopy() -> bool { false }
311312
fn abi_encode(self, buffer: Buffer) -> Buffer {
312313
let ptr_as_u64 = asm(p: self.ptr) {
313314
p: u64

test/src/snapshot/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ pub(super) async fn run(filter_regex: Option<&regex::Regex>) -> Result<()> {
234234
}
235235
continue;
236236
} else if let Some(txt) = cmd.strip_prefix("echo ") {
237-
let mut words = txt.trim().split(" ");
237+
let words = txt.trim().split(" ");
238238
let mut width = 0;
239239
for word in words {
240240
let _ = write!(&mut snapshot, "{} ", word);

0 commit comments

Comments
 (0)