diff options
author | Théo de la Hogue | 2024-04-03 11:16:04 +0200 |
---|---|---|
committer | Théo de la Hogue | 2024-04-03 11:16:04 +0200 |
commit | 9a979238fceb86d3a59a6f2fa1f9146b1313a33b (patch) | |
tree | 563a2a9b4f8dc32805335441cbf0c7308e4b066b /src/argaze.test | |
parent | 45aedc77e26c1c99061da6ea923ed11b36537829 (diff) | |
download | argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.zip argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.gz argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.bz2 argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.xz |
Downcasing function names.
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.""" |