From d1ef93c59f4037d872988acaae3685872e471ef9 Mon Sep 17 00:00:00 2001 From: Zachary Charlop-Powers Date: Sat, 20 Jul 2024 12:09:46 -0400 Subject: [PATCH] fix imports --- tests/test_molview_spec.rs | 2 +- tests/test_pse_parsing.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_molview_spec.rs b/tests/test_molview_spec.rs index 0fb6348..c6a04cf 100644 --- a/tests/test_molview_spec.rs +++ b/tests/test_molview_spec.rs @@ -1,4 +1,4 @@ -use pymol_session_utils::molviewspec::nodes::{ +use pseutils::molviewspec::nodes::{ ColorT, ComponentExpression, ComponentSelector, ComponentSelectorT, ParseFormatT, ParseParams, RepresentationTypeT, State, StructureParams, StructureTypeT, }; diff --git a/tests/test_pse_parsing.rs b/tests/test_pse_parsing.rs index b1a067c..b81ca9e 100644 --- a/tests/test_pse_parsing.rs +++ b/tests/test_pse_parsing.rs @@ -1,5 +1,5 @@ -use pymol_session_utils::pymolparsing::parsing::{CustomValue, SettingsEnum}; -use pymol_session_utils::PSEData; +use pseutils::pymolparsing::parsing::{CustomValue, SettingsEnum}; +use pseutils::PSEData; const TEST_OUTPUT_DIR: &str = "./test_temporary"; #[test]