Skip to content

Commit

Permalink
Use correct domain in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
bierbaum committed Nov 14, 2022
1 parent b3cd314 commit 9a604c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions focus/operations/src/testing/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,9 @@ mod twttr_test {

let repo = fixture.dense_repo.repo()?;

assert!(
repo.config()?.get_string("ci.alt.remote")?
== "https://git.example.com/focus-test-repo-ci"
assert_eq!(
repo.config()?.get_string("ci.alt.remote")?,
"https://git.twitter.biz/focus-test-repo-ci"
);
assert!(repo.config()?.get_bool("ci.alt.enabled")?);

Expand Down

0 comments on commit 9a604c3

Please sign in to comment.