Skip to content

Commit

Permalink
Amended the key signature as new options made the unique value change (
Browse files Browse the repository at this point in the history
  • Loading branch information
canimus committed May 18, 2024
1 parent 960ed64 commit 8d34196
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/performance/soda/test_performance_soda.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@
config = """
soda_cloud:
host: cloud.soda.io
api_key_id: 2f16fd06-5c3f-4d72-995f-1a2740c2f180
api_key_secret: S6L13PXIEG4apS9rCgvlEBnoUZ13uO6kcLb8Q1oM7rLF0ZOS235uog
api_key_id: $soda_key
api_key_secret: $soda_secret
"""
scan.add_configuration_yaml_str(config)
scan.add_configuration_yaml_str(Template(config).substitute(soda_key=os.environ.get("SODA_KEY"), soda_secret=os.environ.get("SODA_SECRET")))



Expand Down
2 changes: 1 addition & 1 deletion test/unit/class_rule/test_rule_update_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_delete_rule_by_list_of_keys(spark):
assert len(c._rule) == 3

c.delete_rule_by_key(
"B58F8BBF3BEFEBCE45F552AD29CC697673FB82A6D64F30C1F2AB3435E96D5431"
"CC325931A3F6C6B4128FAD3C94A1D8DED7B696B0BB132241BCAB7570777A63CE"
)
assert len(c._rule) == 2

Expand Down

0 comments on commit 8d34196

Please sign in to comment.