Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-astachowski committed Nov 7, 2024
1 parent 29a7dec commit e98c743
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.CONNECTION)
public class ConnectionOldDriverTestSuite extends OldDriverTestSuite {
}
public class ConnectionOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.DIAGNOSTIC)
public class DiagnosticOldDriverTestSuite extends OldDriverTestSuite{
}
public class DiagnosticOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.LOADER)
public class LoaderOldDriverTestSuite extends OldDriverTestSuite{
}
public class LoaderOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.OTHERS)
public class OthersOldDriverTestSuite extends OldDriverTestSuite{
}
public class OthersOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.RESULT_SET)
public class ResultSetOldDriverTestSuite extends OldDriverTestSuite{
}
public class ResultSetOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
import org.junit.platform.suite.api.IncludeTags;

@IncludeTags(TestTags.STATEMENT)
public class StatementOldDriverTestSuite extends OldDriverTestSuite {
}
public class StatementOldDriverTestSuite extends OldDriverTestSuite {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@
import org.junit.platform.suite.api.ExcludeTags;

@ExcludeTags({
TestTags.CORE,
TestTags.ARROW,
TestTags.DIAGNOSTIC,
TestTags.CONNECTION,
TestTags.LOADER,
TestTags.OTHERS,
TestTags.RESULT_SET,
TestTags.STATEMENT
TestTags.CORE,
TestTags.ARROW,
TestTags.DIAGNOSTIC,
TestTags.CONNECTION,
TestTags.LOADER,
TestTags.OTHERS,
TestTags.RESULT_SET,
TestTags.STATEMENT
})
public class UnitOldDriverTestSuite extends OldDriverTestSuite{
}
public class UnitOldDriverTestSuite extends OldDriverTestSuite {}

0 comments on commit e98c743

Please sign in to comment.