Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Tests/AnnotationService_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import string
import unittest
from pathlib import Path
from uuid import uuid1

from Tests.Utils import generate_test_uuid
from TM1py.Objects import Annotation, Cube, Dimension, Element, Hierarchy
from TM1py.Services import TM1Service

Expand Down Expand Up @@ -35,7 +35,7 @@ def setUp(self):
Run before each test to create a cube with test annotations
"""
# Build Dimensions
test_uuid = str(uuid1()).replace("-", "_")
test_uuid = generate_test_uuid()
self.dimension_names = (
"TM1py_tests_annotations_dimension1_" + test_uuid,
"TM1py_tests_annotations_dimension2_" + test_uuid,
Expand Down
Loading