aboutsummaryrefslogtreecommitdiff
path: root/src/argaze.test/GazeAnalysis
diff options
context:
space:
mode:
authorThéo de la Hogue2024-04-03 11:16:04 +0200
committerThéo de la Hogue2024-04-03 11:16:04 +0200
commit9a979238fceb86d3a59a6f2fa1f9146b1313a33b (patch)
tree563a2a9b4f8dc32805335441cbf0c7308e4b066b /src/argaze.test/GazeAnalysis
parent45aedc77e26c1c99061da6ea923ed11b36537829 (diff)
downloadargaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.zip
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.gz
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.bz2
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.xz
Downcasing function names.
Diffstat (limited to 'src/argaze.test/GazeAnalysis')
-rw-r--r--src/argaze.test/GazeAnalysis/Entropy.py2
-rw-r--r--src/argaze.test/GazeAnalysis/ExploreExploitRatio.py2
-rw-r--r--src/argaze.test/GazeAnalysis/KCoefficient.py2
-rw-r--r--src/argaze.test/GazeAnalysis/LempelZivComplexity.py2
-rw-r--r--src/argaze.test/GazeAnalysis/NGram.py2
-rw-r--r--src/argaze.test/GazeAnalysis/NearestNeighborIndex.py2
-rw-r--r--src/argaze.test/GazeAnalysis/TransitionMatrix.py2
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."""