Skip to content

Commit

Permalink
[pyTests] Use new module name with PEP8-conforming case
Browse files Browse the repository at this point in the history
  • Loading branch information
cbentejac committed Feb 6, 2024
1 parent ee75ce9 commit eda2e86
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pyTests/hdr/test_brackets.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

import aliceVision as av
import pyalicevision as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sensorDB/test_datasheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Collection of unit tests for the Datasheet structure.
"""

from aliceVision import sensorDB as db
from pyalicevision import sensorDB as db

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sensorDB/test_sensordb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

from aliceVision import sensorDB as db
from pyalicevision import sensorDB as db

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_camerapose.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_constraint2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_exposuresetting.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Collection of unit tests for the ExposureSetting class.
"""

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_imageinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Collection of unit tests for the ImageInfo class.
"""

from aliceVision import sfmData as av
from pyalicevision import sfmData as av
from ..constants import IMAGE_PATH, IMAGE_WIDTH, IMAGE_HEIGHT, METADATA

##################
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_landmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_observation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_rig.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Collection of unit tests for the Rig class.
"""

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_rotationprior.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from aliceVision import sfmData as av
from pyalicevision import sfmData as av

##################
### List of functions:
Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_sfmdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

from aliceVision import sfmData as av
from pyalicevision import sfmData as av
from ..constants import IMAGE_PATH, VIEW_ID, INTRINSIC_ID, POSE_ID, IMAGE_WIDTH, \
IMAGE_HEIGHT, RIG_ID, SUBPOSE_ID, METADATA

Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmData/test_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Collection of unit tests for the View class.
"""

from aliceVision import sfmData as av
from pyalicevision import sfmData as av
from ..constants import IMAGE_PATH, VIEW_ID, INTRINSIC_ID, POSE_ID, IMAGE_WIDTH, \
IMAGE_HEIGHT, RIG_ID, SUBPOSE_ID, METADATA

Expand Down
2 changes: 1 addition & 1 deletion pyTests/sfmDataIO/test_sfmdataio.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

import aliceVision as av
import pyalicevision as av
from ..constants import SFMDATA_PATH, IMAGE_PATH, VIEW_ID, INTRINSIC_ID, POSE_ID, \
IMAGE_WIDTH, IMAGE_HEIGHT, RIG_ID, SUBPOSE_ID, METADATA

Expand Down

0 comments on commit eda2e86

Please sign in to comment.