Skip to content

Commit

Permalink
Ignore one more test after another upstream breakage
Browse files Browse the repository at this point in the history
The clowns at Alpaca have managed to break yet another API. QA anyone?
Ignore the now failing test.
  • Loading branch information
d-e-s-o committed Mar 21, 2024
1 parent ee6b1a2 commit 3669f0d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/api/v2/account_activities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ mod tests {

/// Verify that the `after` request argument is honored properly.
#[test(tokio::test)]
#[ignore = "broken upstream"]
async fn retrieve_after() {
let api_info = ApiInfo::from_env().unwrap();
let client = Client::new(api_info);
Expand All @@ -677,7 +678,11 @@ mod tests {
// first one that was reported.
let activities = client.issue::<Get>(&request).await.unwrap();
assert_eq!(activities.len(), 1);
assert!(activities[0].time() > time);
assert!(
activities[0].time() > time,
"{} vs {time}",
activities[0].time()
);
}

/// Verify that the `until` request argument is honored properly.
Expand Down

0 comments on commit 3669f0d

Please sign in to comment.