Fix import module name in test_dict_iter

This commit is contained in:
kngwyu 2018-11-13 11:50:13 +09:00
parent faa5efc5a1
commit 1081ba9447
2 changed files with 3 additions and 2 deletions

View File

@ -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],

View File

@ -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)]