Skip to content

Commit a17c270

Browse files
committed
Tests: minor renaming
1 parent eb1efd9 commit a17c270

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ htmlcov
5252

5353
# Other
5454
*.bak
55-
*_ui.py
55+
*_ui.py
56+
.guidata_faulthandler.log

.guidata_faulthandler.log

Whitespace-only changes.

plotpy/tests/widgets/test_filtertest1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def add_plot(self, x, y, func, title):
7878
self.layout().addWidget(widget)
7979

8080

81-
def test_filtre1():
81+
def test_filter1():
8282
"""Testing this simple Qt/plotpy example"""
8383
x = np.linspace(-10, 10, 500)
8484
y = np.random.rand(len(x)) + 5 * np.sin(2 * x**2) / x
@@ -90,4 +90,4 @@ def test_filtre1():
9090

9191

9292
if __name__ == "__main__":
93-
test_filtre1()
93+
test_filter1()

plotpy/tests/widgets/test_filtertest2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def setup_window(self):
9999
# ---
100100

101101

102-
def test_filtre2():
102+
def test_filter2():
103103
"""Testing this simple Qt/plotpy example"""
104104
x = np.linspace(-10, 10, 500)
105105
y = np.random.rand(len(x)) + 5 * np.sin(2 * x**2) / x
@@ -112,4 +112,4 @@ def test_filtre2():
112112

113113

114114
if __name__ == "__main__":
115-
test_filtre2()
115+
test_filter2()

0 commit comments

Comments
 (0)