Skip to content

Commit 27fc416

Browse files
committed
refactor: change contents of e2e::file::append files
Signed-off-by: Skyler Ross <[email protected]>
1 parent 7ca0e34 commit 27fc416

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/e2e/file/append.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async fn basic() -> anyhow::Result<()> {
2929

3030
let file_id = FileCreateTransaction::new()
3131
.keys([op.private_key.public_key()])
32-
.contents("[rust::e2e::file_update::1]")
32+
.contents("[rust::e2e::file_append::1]")
3333
.execute(&client)
3434
.await?
3535
.get_receipt(&client)
@@ -76,7 +76,7 @@ async fn large_contents() -> anyhow::Result<()> {
7676

7777
let file_id = FileCreateTransaction::new()
7878
.keys([op.private_key.public_key()])
79-
.contents("[rust::e2e::file_update::2]")
79+
.contents("[rust::e2e::file_append::2]")
8080
.execute(&client)
8181
.await?
8282
.get_receipt(&client)
@@ -96,7 +96,7 @@ async fn large_contents() -> anyhow::Result<()> {
9696

9797
assert_eq!(
9898
String::from_utf8(contents.contents).unwrap(),
99-
format!("[rust::e2e::file_update::2]{}", resources::BIG_CONTENTS)
99+
format!("[rust::e2e::file_append::2]{}", resources::BIG_CONTENTS)
100100
);
101101

102102
let info = FileInfoQuery::new().file_id(file_id).execute(&client).await?;
@@ -130,7 +130,7 @@ async fn large_contents_small_valid_duration() -> anyhow::Result<()> {
130130

131131
let file_id = FileCreateTransaction::new()
132132
.keys([op.private_key.public_key()])
133-
.contents("[rust::e2e::file_update::3]")
133+
.contents("[rust::e2e::file_append::3]")
134134
.execute(&client)
135135
.await?
136136
.get_receipt(&client)
@@ -152,7 +152,7 @@ async fn large_contents_small_valid_duration() -> anyhow::Result<()> {
152152

153153
assert_eq!(
154154
String::from_utf8(contents.contents).unwrap(),
155-
format!("[rust::e2e::file_update::3]{}", resources::BIG_CONTENTS)
155+
format!("[rust::e2e::file_append::3]{}", resources::BIG_CONTENTS)
156156
);
157157

158158
let info = FileInfoQuery::new().file_id(file_id).execute(&client).await?;

0 commit comments

Comments
 (0)