From 1994ccdd53b2f396a1e49fd7ba549573e7c6743f Mon Sep 17 00:00:00 2001 From: pwbh <127856937+pwbh@users.noreply.github.com> Date: Wed, 1 Nov 2023 10:03:31 +0200 Subject: [PATCH] rename yml --- .github/workflows/{rust.yml => ci.yml} | 2 +- nyx-storage/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{rust.yml => ci.yml} (98%) diff --git a/.github/workflows/rust.yml b/.github/workflows/ci.yml similarity index 98% rename from .github/workflows/rust.yml rename to .github/workflows/ci.yml index f1ccfd0..70dec5b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Rust +name: CI on: push: diff --git a/nyx-storage/src/lib.rs b/nyx-storage/src/lib.rs index 4d31f69..109e128 100644 --- a/nyx-storage/src/lib.rs +++ b/nyx-storage/src/lib.rs @@ -218,7 +218,7 @@ mod tests { #[cfg_attr(miri, ignore)] async fn get_returns_ok() { let message_count = 500; - let test_message = b"hello guys"; + let test_message = b"messssagee"; let mut storage = setup_test_storage(&function!(), test_message, message_count).await;