Skip to content

Commit

Permalink
Fix sauce visual java code indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerem Beygo committed Nov 7, 2023
1 parent 1e74371 commit 8100b71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/visual-testing/integrations/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ Don't forget to quit the WebDriver in `@AfterAll` section, or `@AfterSuite` if y

```java
@AfterAll
public static void tearDown() {
if (driver != null) {
driver.quit();
public static void tearDown() {
if (driver != null) {
driver.quit();
}
}
```
Expand All @@ -97,9 +97,9 @@ Don't forget to quit the WebDriver in `@AfterAll` section, or `@AfterSuite` if y

```java
@AfterSuite
public static void tearDown() {
if (driver != null) {
driver.quit();
public static void tearDown() {
if (driver != null) {
driver.quit();
}
}
```
Expand Down

0 comments on commit 8100b71

Please sign in to comment.