Skip to content

Commit

Permalink
Fix test case for #1021
Browse files Browse the repository at this point in the history
Signed-off-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
thanethomson committed Dec 17, 2021
1 parent 92c502a commit 193c9ad
Show file tree
Hide file tree
Showing 5 changed files with 1,592 additions and 209 deletions.
8 changes: 8 additions & 0 deletions rpc/tests/gaia_fixtures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ fn incoming_fixtures() {
let r = endpoint::block_results::Response::from_string(content);
assert!(r.is_ok(), "block_results_at_height_10: {:?}", r);
}
"block_results_at_height_4555980" => {
let r = endpoint::block_results::Response::from_string(content);
assert!(r.is_ok(), "block_results_at_height_4555980: {:?}", r);
}
"blockchain_from_1_to_10" => {
assert!(endpoint::blockchain::Response::from_string(content).is_ok())
}
Expand Down Expand Up @@ -124,6 +128,10 @@ fn outgoing_fixtures() {
let r = endpoint::block_results::Request::from_string(content);
assert!(r.is_ok(), "block_results_at_height_10: {:?}", r);
}
"block_results_at_height_4555980" => {
let r = endpoint::block_results::Request::from_string(content);
assert!(r.is_ok(), "block_results_at_height_4555980: {:?}", r);
}
"blockchain_from_1_to_10" => {
assert!(endpoint::blockchain::Request::from_string(content).is_ok())
}
Expand Down
201 changes: 0 additions & 201 deletions rpc/tests/gaia_fixtures/incoming/block_at_height_4555980.json

This file was deleted.

Loading

0 comments on commit 193c9ad

Please sign in to comment.