Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpdev committed Apr 17, 2022
1 parent 789f62c commit 925efd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coverage.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<coverage version="6.3.2" timestamp="1650238652601" lines-valid="2047" lines-covered="2047" line-rate="1" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<coverage version="6.3.2" timestamp="1650239136726" lines-valid="2047" lines-covered="2047" line-rate="1" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<!-- Generated by coverage.py: https://coverage.readthedocs.io -->
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
<sources>
Expand Down
2 changes: 1 addition & 1 deletion tests/test_checktab.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,5 @@ def test_singlefile(size, ext, index, version, wind):
checktab.searchInput.setText(tfile)
checktab.checkButton.click()
widges = checktab.treeWidget.itemWidgets
assert all([i.total == i.value for i in widges.values()])
assert all(i.total == i.value for i in widges.values())
rmpath(tfile, metafile)

0 comments on commit 925efd6

Please sign in to comment.