Skip to content

Commit

Permalink
up the versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshi-mantu committed Mar 25, 2024
1 parent a216164 commit 96990bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ version = version

allure {
report {
version.set("2.18.1")
version.set("2.26.0")
}
adapter {
autoconfigure.set(true)
aspectjWeaver.set(true)
frameworks {
junit5 {
adapterVersion.set("2.18.1")
adapterVersion.set("2.26.0")
}
}
}
Expand Down Expand Up @@ -46,7 +46,7 @@ repositories {

dependencies {
implementation("commons-io:commons-io:2.6")
implementation("io.qameta.allure:allure-java-commons:2.18.1")
implementation("io.qameta.allure:allure-java-commons:2.26.0")
implementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
implementation("org.junit.jupiter:junit-jupiter-engine:5.7.2")
implementation("org.junit.jupiter:junit-jupiter-params:5.7.2")
Expand Down
5 changes: 4 additions & 1 deletion src/test/java/io/qameta/allure/IssuesRestTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.qameta.allure;

import io.qameta.allure.model.Parameter;
import io.qameta.allure.Param;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Tags;
import org.junit.jupiter.params.ParameterizedTest;
Expand All @@ -21,8 +23,9 @@ public class IssuesRestTest {
@Microservice("Repository")
@Tags({@Tag("web"), @Tag("regress"), @Tag("second-pipe")})
@ParameterizedTest(name = "Close issue via api")
@ValueSource(strings = {"First Note", "Second Note"})
@ValueSource(strings = {"First Note", "Second Note", "Third Note", "Fourth note"})
public void shouldDeleteUserNote(@Param(value = "Title", excluded = true) String title) {
// public void shouldDeleteUserNote(@Param(mode = Parameter.Mode.) String title) {
steps.createIssueWithTitle(OWNER, REPO, title);
steps.closeIssueWithTitle(OWNER, REPO, title);
}
Expand Down

0 comments on commit 96990bb

Please sign in to comment.