Skip to content

Commit a82e882

Browse files
committed
format tests
1 parent 14ac1fe commit a82e882

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bindings/pyroot/pythonizations/test/th2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ def test_scalar_multiplication_right(self):
5454
self.assertAlmostEqual(hscaled.GetBinContent(1, 1), 4.0)
5555

5656

57-
if __name__ == '__main__':
57+
if __name__ == "__main__":
5858
unittest.main()

bindings/pyroot/pythonizations/test/th3.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import ROOT
44

5+
56
class TH3Operations(unittest.TestCase):
67
"""
78
Test TH3D arithmetic operations
@@ -39,5 +40,5 @@ def test_scalar_multiplication_right(self):
3940
self.assertAlmostEqual(hscaled.GetBinContent(1, 1, 1), 4.0)
4041

4142

42-
if __name__ == '__main__':
43+
if __name__ == "__main__":
4344
unittest.main()

0 commit comments

Comments
 (0)