From 68fbc158915c7a460f3d6a53875f58e7b1568b19 Mon Sep 17 00:00:00 2001 From: "Oleg E. Peil" Date: Wed, 16 Sep 2015 11:47:01 +0200 Subject: [PATCH] Fixed test setup for 'test_projgroups.py' The parameter set of 'ProjectorGroup' constructor was modified. Now the call in the test case has been fixed accordingly. --- python/converters/vasp/test/_plotools/test_projgroups.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/converters/vasp/test/_plotools/test_projgroups.py b/python/converters/vasp/test/_plotools/test_projgroups.py index de238537..590f0f5c 100644 --- a/python/converters/vasp/test/_plotools/test_projgroups.py +++ b/python/converters/vasp/test/_plotools/test_projgroups.py @@ -28,9 +28,10 @@ class TestProjectorGroup(mytest.MyTestCase): efermi = self.vasp_data.doscar.efermi eigvals = self.vasp_data.eigenval.eigs - efermi + ferw = self.vasp_data.plocar.ferw self.shells = [ProjectorShell(self.pars.shells[0], self.vasp_data.plocar.plo)] - self.proj_gr = ProjectorGroup(self.pars.groups[0], self.shells, eigvals) + self.proj_gr = ProjectorGroup(self.pars.groups[0], self.shells, eigvals, ferw) # Scenario 1 def test_example(self):