Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / cnn_network / parser_tests_base.hpp
index 28c4646..866da4d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -56,7 +56,7 @@ class FormatParserTest : public TestsCommon {
     void assertParseFail(const std::string& fileContent) {
         try {
             parse(fileContent);
-            FAIL() << "Parser didn't trow";
+            FAIL() << "Parser didn't throw";
         } catch (const std::exception& ex) {
             SUCCEED() << ex.what();
         }
@@ -69,7 +69,7 @@ class FormatParserTest : public TestsCommon {
     void assertSetWeightsFail(const InferenceEngine::TBlob<uint8_t>::Ptr& binBlob) {
         try {
             parser->SetWeights(binBlob);
-            FAIL() << "Parser didn't trow";
+            FAIL() << "Parser didn't throw";
         } catch (const std::exception& ex) {
             SUCCEED() << ex.what();
         }