Skip to content

Commit

Permalink
fixup_lazylock
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Aug 27, 2024
1 parent 6e64376 commit 317d6a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mullvad-relay-selector/tests/relay_selector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ static RELAYS: LazyLock<RelayList> = LazyLock::new(|| RelayList {
},
});

static DAITA_RELAY_LOCATION: Lazy<GeographicLocationConstraint> =
Lazy::new(|| GeographicLocationConstraint::hostname("se", "got", "se9-wireguard"));
static NON_DAITA_RELAY_LOCATION: Lazy<GeographicLocationConstraint> =
Lazy::new(|| GeographicLocationConstraint::hostname("se", "got", "se10-wireguard"));
static DAITA_RELAY_LOCATION: LazyLock<GeographicLocationConstraint> =
LazyLock::new(|| GeographicLocationConstraint::hostname("se", "got", "se9-wireguard"));
static NON_DAITA_RELAY_LOCATION: LazyLock<GeographicLocationConstraint> =
LazyLock::new(|| GeographicLocationConstraint::hostname("se", "got", "se10-wireguard"));

/// A Shadowsocks relay with additional addresses
static SHADOWSOCKS_RELAY: LazyLock<Relay> = LazyLock::new(|| Relay {
Expand Down

0 comments on commit 317d6a2

Please sign in to comment.