Fix import module name in test_dict_iter
This commit is contained in:
parent
faa5efc5a1
commit
1081ba9447
|
@ -1,6 +1,7 @@
|
||||||
from rustapi_module._test_dict import DictSize
|
from rustapi_module.test_dict import DictSize
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"size",
|
"size",
|
||||||
[64, 128, 256],
|
[64, 128, 256],
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::object::PyObject;
|
||||||
use crate::python::{IntoPyPointer, Python, ToPyPointer};
|
use crate::python::{IntoPyPointer, Python, ToPyPointer};
|
||||||
use crate::types::{PyList, PyObjectRef};
|
use crate::types::{PyList, PyObjectRef};
|
||||||
use std;
|
use std;
|
||||||
use std::{cmp, collections, hash, mem, ops::Drop};
|
use std::{cmp, collections, hash, mem};
|
||||||
|
|
||||||
/// Represents a Python `dict`.
|
/// Represents a Python `dict`.
|
||||||
#[repr(transparent)]
|
#[repr(transparent)]
|
||||||
|
|
Loading…
Reference in New Issue