bulk rename of remaining USER- packages

This commit is contained in:
Axel Kohlmeyer
2021-06-29 19:49:18 -04:00
parent 2d4bb8f38c
commit 878795e64a
759 changed files with 878 additions and 878 deletions

View File

@ -133,7 +133,7 @@ TEST_F(LAMMPS_plain, TestStyles)
found = lmp->match_style("atom", "spin");
EXPECT_STREQ(found, "SPIN");
found = lmp->match_style("atom", "wavepacket");
EXPECT_STREQ(found, "USER-AWPMD");
EXPECT_STREQ(found, "AWPMD");
found = lmp->match_style("atom", "dpd");
EXPECT_STREQ(found, "DPD-REACT");
found = lmp->match_style("atom", "edpd");
@ -147,7 +147,7 @@ TEST_F(LAMMPS_plain, TestStyles)
found = lmp->match_style("atom", "smd");
EXPECT_STREQ(found, "MACHDYN");
found = lmp->match_style("atom", "sph");
EXPECT_STREQ(found, "USER-SPH");
EXPECT_STREQ(found, "SPH");
found = lmp->match_style("atom", "i_don't_exist");
EXPECT_STREQ(found, NULL);
}