@@ -74,8 +74,7 @@ void MockOpenFileDialog(HWND hwnd, HWND h_edit, char const* simulated_path) {
7474
7575TEST_F (DriverFormTest, TestUIOpens) {
7676 ASSERT_NE (form->GetHwnd (), nullptr ) << " Form window should be created." ;
77- ASSERT_TRUE (IsWindow (form->GetHwnd ()))
78- << " Form window should be visible." ;
77+ ASSERT_TRUE (IsWindow (form->GetHwnd ())) << " Form window should be visible." ;
7978}
8079
8180TEST_F (DriverFormTest, TestButtonClickCancel) {
@@ -141,7 +140,7 @@ TEST_F(DriverFormTest, SetValuesValidinput) {
141140}
142141
143142TEST_F (DriverFormTest, SetValuesCheckcaseinsensitive) {
144- ProcessMessages ();
143+ ProcessMessages ();
145144 Section attributes = {{" DSN" , " test" },
146145 {" OAuthMechanISM" , " 0" },
147146 {" KeyFilePATH" , " /path/to/key" },
@@ -208,8 +207,11 @@ TEST_F(DriverFormTest, TestConnectionWrongoauth) {
208207 auto status = DriverForm::TestODBCConnection (section);
209208 EXPECT_THAT (
210209 status,
211- StatusRecIs (SQLStates::k_HY000 (),
212- HasSubstr (" OAuthMechanism must be 'Service Authentication', 'Application Default Credentials', or 'External Account Authentication'." )));
210+ StatusRecIs (
211+ SQLStates::k_HY000 (),
212+ HasSubstr (
213+ " OAuthMechanism must be 'Service Authentication', 'Application "
214+ " Default Credentials', or 'External Account Authentication'." )));
213215}
214216TEST_F (DriverFormTest, GetCatalogAndDatasetInvalidinputforcatalog) {
215217 auto result = DriverForm::GetCatalogAndDataset (" Catalog" , " " , " " );
0 commit comments