Skip to content

Commit

Permalink
Fix sensitive mail address (#1419)
Browse files Browse the repository at this point in the history
Change-Id: Ic55fb65ac9d0aaeb7c5308368a5c51541daa827c
  • Loading branch information
Linary authored Apr 16, 2021
1 parent 3f4fd67 commit d895826
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ public void testCreateUserWithDetailsInfo() {
HugeUser user = new HugeUser("james");
user.password("pass2");
user.phone("13812345678");
user.email("test@baidu.com");
user.avatar("http://image.baidu.com/image1");
user.email("test@hugegraph.com");
user.avatar("http://image.hugegraph.com/image1");
user.creator("admin");

Id id = authManager.createUser(user);
Expand All @@ -120,8 +120,8 @@ public void testCreateUserWithDetailsInfo() {
Assert.assertEquals("pass2", user.password());
Assert.assertEquals(user.create(), user.update());
Assert.assertEquals("13812345678", user.phone());
Assert.assertEquals("test@baidu.com", user.email());
Assert.assertEquals("http://image.baidu.com/image1", user.avatar());
Assert.assertEquals("test@hugegraph.com", user.email());
Assert.assertEquals("http://image.hugegraph.com/image1", user.avatar());

Map<String, Object> expected = new HashMap<>();
expected.put("user_name", "james");
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<developers>
<developer>
<name>lizhangmei</name>
<email>lizhangmei@baidu.com</email>
<email>javaloveme@gmail.com</email>
</developer>
<developer>
<name>zhoney</name>
Expand All @@ -51,7 +51,7 @@
</developer>
<developer>
<name>wangjiankui</name>
<email>wangjiankui@baidu.com</email>
<email>wangjiankui1989@163.com</email>
</developer>
<developer>
<name>lizhigang</name>
Expand All @@ -75,15 +75,15 @@
</developer>
<developer>
<name>liujie</name>
<email>liujie23@baidu.com</email>
<email>liujie23@unknown</email>
</developer>
<developer>
<name>houzhizhen</name>
<email>houzhizhen@baidu.com</email>
<email>houzhizhen_101@163.com</email>
</developer>
<developer>
<name>zhangsuochao</name>
<email>zhangsuochao@baidu.com</email>
<email>mysuochao@163.com</email>
</developer>
</developers>

Expand Down

0 comments on commit d895826

Please sign in to comment.