Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use getOwnerOmeName() instead of getOwnerOmeName. Error with Python 3.8 #6340

Merged
merged 1 commit into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def testGetImage(self, gatewaywrapper, author_testimg_tiny):
testImage.isGreyscaleRenderingModel()
assert image._re.getDefaultZ() == testImage._re.getDefaultZ()
assert image._re.getDefaultT() == testImage._re.getDefaultT()
assert image.getOwnerOmeName == testImage.getOwnerOmeName
assert image.getOwnerOmeName() == testImage.getOwnerOmeName()
assert image.getThumbVersion() is not None

@pytest.mark.parametrize("load_pixels", [True, False])
Expand Down Expand Up @@ -660,7 +660,7 @@ def testGetProject(self, gatewaywrapper):
assert testProj.getId() == p.getId()
assert testProj.OMERO_CLASS == p.OMERO_CLASS
assert testProj.countChildren_cached() == p.countChildren_cached()
assert testProj.getOwnerOmeName == p.getOwnerOmeName
assert testProj.getOwnerOmeName() == p.getOwnerOmeName()

def testTraversal(self, author_testimg_tiny):
image = author_testimg_tiny
Expand Down