Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 4bb87e5

Browse files
committed
Fix quoting test
1 parent e3a73eb commit 4bb87e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_dls_python3_skeleton.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def test_new_module(tmp_path: Path):
4141

4242
conf = ConfigParser()
4343
conf.read(module / "setup.cfg")
44-
assert conf["metadata"]["author"] == '"Firstname Lastname"'
45-
assert conf["metadata"]["author_email"] == '"[email protected]"'
44+
assert conf["metadata"]["author"] == "Firstname Lastname"
45+
assert conf["metadata"]["author_email"] == "[email protected]"
4646
versiongit_lines = [
4747
line
4848
for line in (module / "docs" / "reference" / "api.rst").read_text().splitlines()

0 commit comments

Comments
 (0)