Skip to content

Commit 1a352f0

Browse files
committed
Remove .DS_Store files
1 parent 4f42885 commit 1a352f0

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,9 @@ fabric.properties
108108

109109
# VS Code
110110
.vscode/
111+
112+
# DS Store files
113+
*.DS_Store
114+
115+
# mypy Cache
116+
.mypy_cache/

tests/.DS_Store

-6 KB
Binary file not shown.

tests/core/.DS_Store

-8 KB
Binary file not shown.

tests/core/pm-module/.DS_Store

-6 KB
Binary file not shown.

tests/ens/test_setup_address.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ def test_set_address(ens, name, full_name, namehash_hex, TEST_ADDRESS):
6868

6969
namehash = Web3.toBytes(hexstr=namehash_hex)
7070
normal_name = ens.nameprep(full_name)
71-
if ens.nameprep(name) == normal_name:
72-
assert is_same_address(ens.address(name), TEST_ADDRESS)
71+
assert is_same_address(ens.address(name), TEST_ADDRESS)
7372

7473
# check that the correct namehash is set:
7574
assert is_same_address(ens.resolver(normal_name).addr(namehash), TEST_ADDRESS)

0 commit comments

Comments
 (0)