TST refactor

This commit is contained in:
Kevin Johnson
2021-02-19 11:48:22 -08:00
parent 37fef45781
commit 4e8e0f229e
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ setup(
"pandas_ta.volatility",
"pandas_ta.volume"
],
version=".".join(("0", "2", "43b")),
version=".".join(("0", "2", "44b")),
description=long_description,
long_description=long_description,
author="Kevin Johnson",
-2
View File
@@ -108,8 +108,6 @@ class TestOverlap(TestCase):
result = pandas_ta.hwma(self.close)
self.assertIsInstance(result, Series)
self.assertEqual(result.name, "HWMA_0.2_0.1_0.1")
print(f"\n{result.head(30)}")
print(f"\n{result.tail(30)}")
def test_kama(self):
result = pandas_ta.kama(self.close)