Skip to content

Commit 5978c17

Browse files
committed
fix: e2e test, keyword count == 2
1 parent 839731b commit 5978c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

be_repo/tests/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ def test_analyze_resume_with_jd(driver, wait):
9696
content_text = " ".join([element.text for element in elements])
9797
for keyword in keywords:
9898
count = content_text.count(keyword)
99-
assert count == 1, f"'{keyword}' does not appear exactly twice in the content (found {count} times)"
99+
assert count == 2, f"'{keyword}' does not appear exactly twice in the content (found {count} times)"

0 commit comments

Comments
 (0)