You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/03/07 12:53:55 UTC

[skywalking-agent-test-tool] branch master updated: Fix a typo (#29)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-agent-test-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new 86f4736  Fix a typo (#29)
86f4736 is described below

commit 86f4736e1cfa6a846923e5a35e80f0e3a07e36f2
Author: Jingguo Yao <ya...@gmail.com>
AuthorDate: Sun Mar 7 20:53:49 2021 +0800

    Fix a typo (#29)
---
 .../plugin/test/agent/tool/validator/assertor/DataAssert.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/assertor/DataAssert.java b/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/assertor/DataAssert.java
index b31e69a..7d7d6b9 100644
--- a/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/assertor/DataAssert.java
+++ b/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/assertor/DataAssert.java
@@ -25,7 +25,7 @@ import org.apache.skywalking.plugin.test.agent.tool.validator.entity.Data;
 public class DataAssert {
 
     public static void assertEquals(Data excepted, Data actual) {
-        log.info("excepted data:\n{}", new GsonBuilder().setPrettyPrinting().create().toJson(excepted));
+        log.info("expected data:\n{}", new GsonBuilder().setPrettyPrinting().create().toJson(excepted));
         log.info("actual data:\n{}", new GsonBuilder().setPrettyPrinting().create().toJson(actual));
         SegmentItemsAssert.assertEquals(excepted.segmentItems(), actual.segmentItems());
         MeterItemsAssert.assertEquals(excepted.meterItems(), actual.meterItems());