Try test failing

This commit is contained in:
Dmitriy Shishkov 2021-12-15 23:58:32 +03:00
parent cffe314f73
commit c428d66983
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060
2 changed files with 2 additions and 2 deletions

View File

@ -14,5 +14,5 @@ jobs:
- name: cmake make
run: cmake --build build/ --target all
# run tests
- name: run tests 1
- name: run tests
run: build/tests/testQRCode

View File

@ -14,7 +14,7 @@ TEST(QRCodeTests, ConstructsClass) {
string inp("TEST");
QRCode qr(inp);
EXPECT_EQ(qr.input, "TEST");
EXPECT_EQ(qr.input, "TES");
EXPECT_EQ(qr.corr_lvl, CorrectionLevel::M);
EXPECT_EQ(qr.method, QRCodeMethod::Alphabetic);
}