diff options
Diffstat (limited to 'src/argaze.test')
-rw-r--r-- | src/argaze.test/GazeAnalysis/Entropy.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/ExploreExploitRatio.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/KCoefficient.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/LempelZivComplexity.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/NGram.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/NearestNeighborIndex.py | 2 | ||||
-rw-r--r-- | src/argaze.test/GazeAnalysis/TransitionMatrix.py | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/argaze.test/GazeAnalysis/Entropy.py b/src/argaze.test/GazeAnalysis/Entropy.py index 346b458..2b09b27 100644 --- a/src/argaze.test/GazeAnalysis/Entropy.py +++ b/src/argaze.test/GazeAnalysis/Entropy.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import Entropy, TransitionMatrix from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestAOIScanPathAnalyzer(unittest.TestCase): """Test AOIScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/ExploreExploitRatio.py b/src/argaze.test/GazeAnalysis/ExploreExploitRatio.py index 836edbf..ceef343 100644 --- a/src/argaze.test/GazeAnalysis/ExploreExploitRatio.py +++ b/src/argaze.test/GazeAnalysis/ExploreExploitRatio.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import ExploreExploitRatio from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestScanPathAnalyzer(unittest.TestCase): """Test ScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/KCoefficient.py b/src/argaze.test/GazeAnalysis/KCoefficient.py index 83768c3..d6af6b6 100644 --- a/src/argaze.test/GazeAnalysis/KCoefficient.py +++ b/src/argaze.test/GazeAnalysis/KCoefficient.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import KCoefficient from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestScanPathAnalyzer(unittest.TestCase): """Test ScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/LempelZivComplexity.py b/src/argaze.test/GazeAnalysis/LempelZivComplexity.py index b827d77..13e44c0 100644 --- a/src/argaze.test/GazeAnalysis/LempelZivComplexity.py +++ b/src/argaze.test/GazeAnalysis/LempelZivComplexity.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import LempelZivComplexity from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestAOIScanPathAnalyzer(unittest.TestCase): """Test AOIScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/NGram.py b/src/argaze.test/GazeAnalysis/NGram.py index 7dc0cc7..54986fb 100644 --- a/src/argaze.test/GazeAnalysis/NGram.py +++ b/src/argaze.test/GazeAnalysis/NGram.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import NGram from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestAOIScanPathAnalyzer(unittest.TestCase): """Test AOIScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py index 87b5bd0..080a28c 100644 --- a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py +++ b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import NearestNeighborIndex from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestScanPathAnalyzer(unittest.TestCase): """Test ScanPathAnalyzer class.""" diff --git a/src/argaze.test/GazeAnalysis/TransitionMatrix.py b/src/argaze.test/GazeAnalysis/TransitionMatrix.py index 88bc133..c1d3ee2 100644 --- a/src/argaze.test/GazeAnalysis/TransitionMatrix.py +++ b/src/argaze.test/GazeAnalysis/TransitionMatrix.py @@ -22,7 +22,7 @@ from argaze import GazeFeatures from argaze.GazeAnalysis import TransitionMatrix from argaze.utils import UtilsFeatures -GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures') +GazeFeaturesTest = UtilsFeatures.import_from_test_package('GazeFeatures') class TestAOIScanPathAnalyzer(unittest.TestCase): """Test AOIScanPathAnalyzer class.""" |