Skip to content

Commit

Permalink
Reduced the number of forex sources from 11 to 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
THLO committed Nov 20, 2023
1 parent 6f0b188 commit 810baec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrc/src/forex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ mod test {
fn is_available_ipv4() {
let available_forex_sources_count =
FOREX_SOURCES.iter().filter(|e| e.is_available()).count();
assert_eq!(available_forex_sources_count, 11);
assert_eq!(available_forex_sources_count, 10);
}

#[test]
Expand Down
2 changes: 1 addition & 1 deletion src/xrc/src/periodic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ mod test {
let timestamp = 1680220800;
let forexes_with_timestamps_and_context =
get_forexes_with_timestamps_and_context(timestamp);
assert_eq!(forexes_with_timestamps_and_context.len(), 11);
assert_eq!(forexes_with_timestamps_and_context.len(), 10);

assert!(matches!(
forexes_with_timestamps_and_context[0].0,
Expand Down

0 comments on commit 810baec

Please sign in to comment.