Skip to content

Commit

Permalink
fixed LDAP enum in test data
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-genson committed Dec 27, 2023
1 parent d4e868a commit 7bae100
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/code-generation/utils/anonymize_backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def walk_data_and_anonymize(data):
for item in v:
walk_data_and_anonymize(item)
else:
# preserve alembic version number
if k == "version_num":
# preserve alembic version number and enums
if k in ["auth_method", "version_num"]:
continue

data[k] = clean_value(v)
Expand Down
Binary file modified tests/data/backups/backup_version_44e8d670719d.zip
Binary file not shown.
Binary file modified tests/data/backups/backup_version_ba1e4a6cfe99.zip
Binary file not shown.
Binary file modified tests/data/backups/backup_version_bcfdad6b7355.zip
Binary file not shown.

0 comments on commit 7bae100

Please sign in to comment.