Skip to content

Commit

Permalink
Change user instead of pass (#4250)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 authored Nov 9, 2021
1 parent 1081b8e commit efe926d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/068_partial_parsing_tests/test_pp_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ def test_postgres_profile_env_vars(self):
manifest = get_manifest()
env_vars_checksum = manifest.state_check.profile_env_vars_hash.checksum

# Change env_vars
os.environ['ENV_VAR_PASS'] = 'my_pass'
# Change env_vars, the user doesn't exist, this should fail
os.environ['ENV_VAR_USER'] = 'fake_user'
(results, log_output) = self.run_dbt_and_capture(["run"], expect_pass=False)
self.assertTrue('env vars used in profiles.yml have changed' in log_output)
manifest = get_manifest()
Expand Down

0 comments on commit efe926d

Please sign in to comment.