Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
jschlyter committed Oct 19, 2024

Verified

This commit was signed with the committer’s verified signature.
jschlyter Jakob Schlyter
1 parent b287449 commit 320fab9
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "tapir"
name = "dnstapir"
version = "0.0.0"
description = "DNS TAPIR Python Library"
authors = ["Jakob Schlyter <[email protected]>"]
2 changes: 1 addition & 1 deletion tests/test_key_cache.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric import ed25519

from tapir.key_cache import CombinedKeyCache, KeyCache, MemoryKeyCache, RedisKeyCache
from dnstapir.key_cache import CombinedKeyCache, KeyCache, MemoryKeyCache, RedisKeyCache


def _test_key_cache(key_cache: KeyCache):
2 changes: 1 addition & 1 deletion tests/test_logging.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import logging.config

from tapir.logging import JsonFormatter # noqa
from dnstapir.logging import JsonFormatter # noqa

LOGGING_RECORD_CUSTOM_FORMAT = {
"time": "asctime",
2 changes: 1 addition & 1 deletion tests/test_telemetry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from fastapi import FastAPI

from tapir.telemetry import configure_opentelemetry
from dnstapir.telemetry import configure_opentelemetry


def test_telemetry():

0 comments on commit 320fab9

Please sign in to comment.