Skip to content

Commit 74bac68

Browse files
authored
rust: Make model serialization test non-async (#1803)
No point in it being async.
2 parents 5a0c505 + f6a3138 commit 74bac68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/tests/it/model_serialization.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use svix::api::ListResponseApplicationOut;
22

3-
#[tokio::test]
4-
async fn test_list_response_xxx_out() {
3+
#[test]
4+
fn test_list_response_xxx_out() {
55
// first test with iterator and prevIterator
66
let json_str =
77
r#"{"data":[],"done":true,"iterator":"iterator-str","prevIterator":"prevIterator-str"}"#;

0 commit comments

Comments
 (0)