Skip to content

Commit

Permalink
fix: test_project_id
Browse files Browse the repository at this point in the history
  • Loading branch information
Rakowskiii committed Jul 28, 2023
1 parent 126719f commit e004af0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ jobs:
ENVIRONMENT: ${{ inputs.environment }}
PROJECT_ID: ${{ secrets.PROJECT_ID }}
NOTIFY_PROJECT_SECRET: ${{ secrets.NOTIFY_PROJECT_SECRET }}
TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }}


2 changes: 1 addition & 1 deletion tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const TEST_ACCOUNT: &'static str = "eip155:123:test_account";
#[tokio::test]
async fn notify_properly_sending_message() {
let env = std::env::var("ENVIRONMENT").unwrap_or("STAGING".to_owned());
let project_id = std::env::var("PROJECT_ID").expect(
let project_id = std::env::var("TEST_PROJECT_ID").expect(
"Tests requires
PROJECT_ID to be set",
);
Expand Down

0 comments on commit e004af0

Please sign in to comment.