|
4 | 4 | #include "source_io/module_parameter/parameter.h" |
5 | 5 | #undef private |
6 | 6 | #include "source_estate/cal_ux.h" |
7 | | -#include "source_estate/read_orb.h" |
| 7 | +#include "source_cell/read_orb.h" |
8 | 8 | #include "source_estate/read_pseudo.h" |
9 | 9 | #include "source_cell/read_stru.h" |
10 | 10 | #include "source_cell/print_cell.h" |
@@ -1088,7 +1088,7 @@ TEST_F(UcellTest, ReadOrbFile) |
1088 | 1088 | std::string orb_file = "./support/C.orb"; |
1089 | 1089 | std::ofstream ofs_running; |
1090 | 1090 | ofs_running.open("tmp_readorbfile"); |
1091 | | - bool result = elecstate::read_orb_file(0, orb_file, ofs_running, &(ucell->atoms[0])); |
| 1091 | + bool result = unitcell::read_orb_file(0, orb_file, ofs_running, &(ucell->atoms[0])); |
1092 | 1092 | ofs_running << " result=" << result << std::endl; |
1093 | 1093 | EXPECT_TRUE(result); |
1094 | 1094 | ofs_running.close(); |
@@ -1828,7 +1828,7 @@ TEST_F(UcellTest, ReadOrbFileWarning) |
1828 | 1828 | std::ofstream ofs_running; |
1829 | 1829 | ofs_running.open("tmp_readorbfilewarning"); |
1830 | 1830 | testing::internal::CaptureStdout(); |
1831 | | - bool result = elecstate::read_orb_file(0, orb_file, ofs_running, &(ucell->atoms[0])); |
| 1831 | + bool result = unitcell::read_orb_file(0, orb_file, ofs_running, &(ucell->atoms[0])); |
1832 | 1832 | output = testing::internal::GetCapturedStdout(); |
1833 | 1833 | ofs_running << output << std::endl; |
1834 | 1834 | EXPECT_FALSE(result); |
|
0 commit comments