We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1d16e commit 26c4ca2Copy full SHA for 26c4ca2
tests/test_opendssdirect.py
@@ -2,7 +2,11 @@
2
import pytest as pt
3
import os
4
import pandas as pd
5
-from pandas.util.testing import assert_dict_equal
+try:
6
+ from pandas._testing import assert_dict_equal #TODO: migrate to something else, this is bad
7
+except:
8
+ from pandas.util.testing import assert_dict_equal
9
+
10
import numpy as np
11
12
current_directory = os.path.dirname(os.path.realpath(__file__))
0 commit comments