Skip to content

Commit

Permalink
fix: doc tests failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Mettwasser committed Aug 26, 2024
1 parent 5895487 commit 1399040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/worldstate/models/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//! async fn main() -> Result<(), wf::ApiError> {
//! let reqwest_client = reqwest::Client::new();
//!
//! let cetus: wf::Cetus = Cetus::query(&reqwest_client).await?;
//! let fissures: Vec<wf::Fissure> = Fissure::query(&reqwest_client).await?;
//! let cetus: wf::Cetus = wf::Cetus::query(&reqwest_client).await?;
//! let fissures: Vec<wf::Fissure> = wf::Fissure::query(&reqwest_client).await?;
//!
//! Ok(())
//! }
Expand Down

0 comments on commit 1399040

Please sign in to comment.