aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/net.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-10-25 21:35:43 -0400
committerluigi1111 <luigi1111w@gmail.com>2023-10-25 21:35:43 -0400
commite3d0154b5b405256184d8bcd3963fc66b9ba16b1 (patch)
treec6bf722e4f8d3c3e0bc0b46364693e679d6a305d /tests/unit_tests/net.cpp
parentMerge pull request #8967 (diff)
parent`KV_SERIALIZE`: remove extraneous semicolons in DSL (diff)
downloadmonero-e3d0154b5b405256184d8bcd3963fc66b9ba16b1.tar.xz
Merge pull request #8969
8190f25 KV_SERIALIZE: remove extraneous semicolons in DSL (jeffro256)
Diffstat (limited to 'tests/unit_tests/net.cpp')
-rw-r--r--tests/unit_tests/net.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit_tests/net.cpp b/tests/unit_tests/net.cpp
index b9555b213..2b565f7d0 100644
--- a/tests/unit_tests/net.cpp
+++ b/tests/unit_tests/net.cpp
@@ -239,7 +239,7 @@ namespace
net::tor_address tor;
BEGIN_KV_SERIALIZE_MAP()
- KV_SERIALIZE(tor);
+ KV_SERIALIZE(tor)
END_KV_SERIALIZE_MAP()
};
}
@@ -611,7 +611,7 @@ namespace
net::i2p_address i2p;
BEGIN_KV_SERIALIZE_MAP()
- KV_SERIALIZE(i2p);
+ KV_SERIALIZE(i2p)
END_KV_SERIALIZE_MAP()
};
}