3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-02 03:15:33 +02:00

fix (plovasp tests): remove pytriqs... prefix from imports

This commit is contained in:
Oleg E. Peil 2018-08-01 11:48:28 +02:00 committed by Manuel
parent a304e0ed36
commit c2dfc3fb6c
2 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,8 @@ import os
import rpath import rpath
_rpath = os.path.dirname(rpath.__file__) + '/' _rpath = os.path.dirname(rpath.__file__) + '/'
from pytriqs.applications.dft.converters.plovasp.converter import generate_and_output_as_text from converters.plovasp.converter import generate_and_output_as_text
from pytriqs.applications.dft.converters import VaspConverter from converters import VaspConverter
import mytest import mytest
################################################################################ ################################################################################

View File

@ -3,8 +3,8 @@ import os
import rpath import rpath
_rpath = os.path.dirname(rpath.__file__) + '/' _rpath = os.path.dirname(rpath.__file__) + '/'
from pytriqs.applications.dft.converters.plovasp.converter import generate_and_output_as_text from converters.plovasp.converter import generate_and_output_as_text
from pytriqs.applications.dft.converters import VaspConverter from converters import VaspConverter
import mytest import mytest
################################################################################ ################################################################################
@ -29,7 +29,7 @@ class TestConverterOneSite(mytest.MyTestCase):
generate_and_output_as_text(_rpath + 'example.cfg', _rpath + 'one_site/') generate_and_output_as_text(_rpath + 'example.cfg', _rpath + 'one_site/')
test_file = _rpath + 'pg_output.test.h5' test_file = _rpath + 'pg_output.test.h5'
converter = VaspConverter(filename=_rpath + 'one_site', converter = VaspConverter(filename=_rpath + 'one_site',
hdf_filename=test_file) hdf_filename=test_file)
converter.convert_dft_input() converter.convert_dft_input()