8000 bpo-10572: Move `sqlite3` tests to `Lib/test` by erlend-aasland · Pull Request #29304 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-10572: Move sqlite3 tests to Lib/test #29304

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

Merged
merged 18 commits into from
Oct 29, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert 571a515
  • Loading branch information
Erlend E. Aasland committed Oct 29, 2021
commit f8889d21136ea1f534b9633b395a81ce46876e8f
2 changes: 1 addition & 1 deletion Lib/test/test_sqlite3/test_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import sqlite3 as sqlite

from test.support.os_helper import TESTFN, unlink
from test_userfunctions import with_tracebacks
from .test_userfunctions import with_tracebacks

class CollationTests(unittest.TestCase):
def test_create_collation_not_string(self):
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_sqlite3/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import functools
from test import support

from test_dbapi import managed_connect
from .test_dbapi import managed_connect

class RegressionTests(unittest.TestCase):
def setUp(self):
Expand Down
0