diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 578bbc64..73f6fb0c 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -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 }} \ No newline at end of file diff --git a/tests/integration.rs b/tests/integration.rs index 9adc37ba..696031ff 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -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", );