We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb6bed4 commit 4dc01aaCopy full SHA for 4dc01aa
1 file changed
tests/test_view.py
@@ -15,6 +15,7 @@
15
# specific language governing permissions and limitations
16
# under the License.
17
from typing import Any
18
+from uuid import UUID
19
20
import pytest
21
@@ -85,7 +86,7 @@ def test_view_location(view: View) -> None:
85
86
87
88
def test_view_uuid(view: View) -> None:
- assert view.uuid() == "a20125c8-7284-442c-9aea-15fee620737c"
89
+ assert view.uuid() == UUID("a20125c8-7284-442c-9aea-15fee620737c")
90
91
92
def test_view_sql_for_dialect(view: View) -> None:
0 commit comments