@@ -25,7 +25,7 @@ BOOST_AUTO_TEST_SUITE(error_tests)
2525
2626// general
2727
28- BOOST_AUTO_TEST_CASE(error_t__code__success__false_exected_message )
28+ BOOST_AUTO_TEST_CASE(error_t__code__success__false_expected_message )
2929{
3030 constexpr auto value = error::success;
3131 const auto ec = code (value);
@@ -36,7 +36,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__success__false_exected_message)
3636
3737// server (url parse codes)
3838
39- BOOST_AUTO_TEST_CASE (error_t__code__empty_path__true_exected_message )
39+ BOOST_AUTO_TEST_CASE (error_t__code__empty_path__true_expected_message )
4040{
4141 constexpr auto value = error::empty_path;
4242 const auto ec = code (value);
@@ -45,7 +45,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__empty_path__true_exected_message)
4545 BOOST_REQUIRE_EQUAL (ec.message (), " empty_path" );
4646}
4747
48- BOOST_AUTO_TEST_CASE (error_t__code__invalid_number__true_exected_message )
48+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_number__true_expected_message )
4949{
5050 constexpr auto value = error::invalid_number;
5151 const auto ec = code (value);
@@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_number__true_exected_message)
5454 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_number" );
5555}
5656
57- BOOST_AUTO_TEST_CASE (error_t__code__invalid_hash__true_exected_message )
57+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_hash__true_expected_message )
5858{
5959 constexpr auto value = error::invalid_hash;
6060 const auto ec = code (value);
@@ -63,7 +63,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_hash__true_exected_message)
6363 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_hash" );
6464}
6565
66- BOOST_AUTO_TEST_CASE (error_t__code__missing_version__true_exected_message )
66+ BOOST_AUTO_TEST_CASE (error_t__code__missing_version__true_expected_message )
6767{
6868 constexpr auto value = error::missing_version;
6969 const auto ec = code (value);
@@ -72,7 +72,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_version__true_exected_message)
7272 BOOST_REQUIRE_EQUAL (ec.message (), " missing_version" );
7373}
7474
75- BOOST_AUTO_TEST_CASE (error_t__code__missing_target__true_exected_message )
75+ BOOST_AUTO_TEST_CASE (error_t__code__missing_target__true_expected_message )
7676{
7777 constexpr auto value = error::missing_target;
7878 const auto ec = code (value);
@@ -81,7 +81,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_target__true_exected_message)
8181 BOOST_REQUIRE_EQUAL (ec.message (), " missing_target" );
8282}
8383
84- BOOST_AUTO_TEST_CASE (error_t__code__invalid_target__true_exected_message )
84+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_target__true_expected_message )
8585{
8686 constexpr auto value = error::invalid_target;
8787 const auto ec = code (value);
@@ -90,7 +90,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_target__true_exected_message)
9090 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_target" );
9191}
9292
93- BOOST_AUTO_TEST_CASE (error_t__code__missing_hash__true_exected_message )
93+ BOOST_AUTO_TEST_CASE (error_t__code__missing_hash__true_expected_message )
9494{
9595 constexpr auto value = error::missing_hash;
9696 const auto ec = code (value);
@@ -99,7 +99,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_hash__true_exected_message)
9999 BOOST_REQUIRE_EQUAL (ec.message (), " missing_hash" );
100100}
101101
102- BOOST_AUTO_TEST_CASE (error_t__code__missing_height__true_exected_message )
102+ BOOST_AUTO_TEST_CASE (error_t__code__missing_height__true_expected_message )
103103{
104104 constexpr auto value = error::missing_height;
105105 const auto ec = code (value);
@@ -108,7 +108,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_height__true_exected_message)
108108 BOOST_REQUIRE_EQUAL (ec.message (), " missing_height" );
109109}
110110
111- BOOST_AUTO_TEST_CASE (error_t__code__missing_position__true_exected_message )
111+ BOOST_AUTO_TEST_CASE (error_t__code__missing_position__true_expected_message )
112112{
113113 constexpr auto value = error::missing_position;
114114 const auto ec = code (value);
@@ -117,7 +117,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_position__true_exected_message)
117117 BOOST_REQUIRE_EQUAL (ec.message (), " missing_position" );
118118}
119119
120- BOOST_AUTO_TEST_CASE (error_t__code__missing_id_type__true_exected_message )
120+ BOOST_AUTO_TEST_CASE (error_t__code__missing_id_type__true_expected_message )
121121{
122122 constexpr auto value = error::missing_id_type;
123123 const auto ec = code (value);
@@ -126,7 +126,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_id_type__true_exected_message)
126126 BOOST_REQUIRE_EQUAL (ec.message (), " missing_id_type" );
127127}
128128
129- BOOST_AUTO_TEST_CASE (error_t__code__invalid_id_type__true_exected_message )
129+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_id_type__true_expected_message )
130130{
131131 constexpr auto value = error::invalid_id_type;
132132 const auto ec = code (value);
@@ -135,7 +135,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_id_type__true_exected_message)
135135 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_id_type" );
136136}
137137
138- BOOST_AUTO_TEST_CASE (error_t__code__missing_type_id__true_exected_message )
138+ BOOST_AUTO_TEST_CASE (error_t__code__missing_type_id__true_expected_message )
139139{
140140 constexpr auto value = error::missing_type_id;
141141 const auto ec = code (value);
@@ -144,7 +144,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_type_id__true_exected_message)
144144 BOOST_REQUIRE_EQUAL (ec.message (), " missing_type_id" );
145145}
146146
147- BOOST_AUTO_TEST_CASE (error_t__code__missing_component__true_exected_message )
147+ BOOST_AUTO_TEST_CASE (error_t__code__missing_component__true_expected_message )
148148{
149149 constexpr auto value = error::missing_component;
150150 const auto ec = code (value);
@@ -153,7 +153,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__missing_component__true_exected_message)
153153 BOOST_REQUIRE_EQUAL (ec.message (), " missing_component" );
154154}
155155
156- BOOST_AUTO_TEST_CASE (error_t__code__invalid_component__true_exected_message )
156+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_component__true_expected_message )
157157{
158158 constexpr auto value = error::invalid_component;
159159 const auto ec = code (value);
@@ -162,7 +162,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_component__true_exected_message)
162162 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_component" );
163163}
164164
165- BOOST_AUTO_TEST_CASE (error_t__code__invalid_subcomponent__true_exected_message )
165+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_subcomponent__true_expected_message )
166166{
167167 constexpr auto value = error::invalid_subcomponent;
168168 const auto ec = code (value);
@@ -171,7 +171,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_subcomponent__true_exected_message)
171171 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_subcomponent" );
172172}
173173
174- BOOST_AUTO_TEST_CASE (error_t__code__extra_segment__true_exected_message )
174+ BOOST_AUTO_TEST_CASE (error_t__code__extra_segment__true_expected_message )
175175{
176176 constexpr auto value = error::extra_segment;
177177 const auto ec = code (value);
@@ -182,7 +182,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__extra_segment__true_exected_message)
182182
183183// server (rpc response codes)
184184
185- BOOST_AUTO_TEST_CASE (error_t__code__not_found__true_exected_message )
185+ BOOST_AUTO_TEST_CASE (error_t__code__not_found__true_expected_message )
186186{
187187 constexpr auto value = error::not_found;
188188 const auto ec = code (value);
@@ -191,7 +191,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__not_found__true_exected_message)
191191 BOOST_REQUIRE_EQUAL (ec.message (), " not_found" );
192192}
193193
194- BOOST_AUTO_TEST_CASE (error_t__code__invalid_argument__true_exected_message )
194+ BOOST_AUTO_TEST_CASE (error_t__code__invalid_argument__true_expected_message )
195195{
196196 constexpr auto value = error::invalid_argument;
197197 const auto ec = code (value);
@@ -200,7 +200,7 @@ BOOST_AUTO_TEST_CASE(error_t__code__invalid_argument__true_exected_message)
200200 BOOST_REQUIRE_EQUAL (ec.message (), " invalid_argument" );
201201}
202202
203- BOOST_AUTO_TEST_CASE (error_t__code__not_implemented__true_exected_message )
203+ BOOST_AUTO_TEST_CASE (error_t__code__not_implemented__true_expected_message )
204204{
205205 constexpr auto value = error::not_implemented;
206206 const auto ec = code (value);
0 commit comments