Skip to content

Commit

Permalink
Remove bug marker of fixed issues (#1275)
Browse files Browse the repository at this point in the history
Signed-off-by: Maayan Hadasi <mguetta@redhat.com>
  • Loading branch information
mguetta1 authored Nov 27, 2024
1 parent c5c3689 commit 06b0824
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe(["@tier3"], "Credentials filter validations", function () {
Credentials.filterByType();
});

it("Bug MTA-3143: Creator filter validations", () => {
it("Creator filter validations", () => {
Credentials.filterByCreator(adminUserName);
Credentials.filterByCreator(newAdminUser.username);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let applicationsList: Array<Analysis> = [];
let source_credential: CredentialsSourceControlUsername;
let maven_credential: CredentialsMaven;

describe(["@tier2"], "Bug MTA-2006: Affected files validation", () => {
describe(["@tier2"], "Affected files validation", () => {
before("Login", function () {
login();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe(["@tier1"], "Binary Analysis", () => {
cy.intercept("GET", "/hub/application*").as("getApplication");
});

it("Bug MTA-4135: Binary Analysis", function () {
it("Binary Analysis", function () {
// For binary analysis application must have group,artifcat and version.
application = new Analysis(
getRandomApplicationData("tackletestApp_binary", {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe(["@tier1"], "Source Analysis", () => {
Application.open(true);
});

it("Bug MTA-4135: Source + dependencies analysis on tackletest app", function () {
it("Source + dependencies analysis on tackletest app", function () {
// Source code analysis require both source and maven credentials
const application = new Analysis(
getRandomApplicationData("tackleTestApp_Source+dependencies", {
Expand All @@ -107,7 +107,7 @@ describe(["@tier1"], "Source Analysis", () => {
);
});

it("Bug MTA-4135: Source + dependencies analysis on daytrader app", function () {
it("Source + dependencies analysis on daytrader app", function () {
// Automate bug https://issues.redhat.com/browse/TACKLE-721
const application = new Analysis(
getRandomApplicationData("dayTraderApp_Source+dependencies", {
Expand Down Expand Up @@ -349,7 +349,7 @@ describe(["@tier1"], "Source Analysis", () => {
});

// Automates bug MTA-3422
it("Bug MTA-4135: 4 targets source analysis on tackle app public", function () {
it("4 targets source analysis on tackle app public", function () {
const application = new Analysis(
getRandomApplicationData("tackle-public-4-targets", {
sourceData: this.appData["tackle-testapp-public"],
Expand All @@ -367,7 +367,7 @@ describe(["@tier1"], "Source Analysis", () => {
});

// Automates customer bug MTA-2973
it("Bug MTA-3163: Source analysis on tackle app public with custom rule", function () {
it("Source analysis on tackle app public with custom rule", function () {
const applicationList = [
new Analysis(
getRandomApplicationData("tackle-public-customRule", {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe.skip(["@tier3"], "Migrator Upload Binary Analysis", () => {
login();
});

it("Bug MTA-1455: Upload Binary Analysis", function () {
it("Upload Binary Analysis", function () {
const application = new Analysis(
getRandomApplicationData("uploadBinary"),
getRandomAnalysisData(this.analysisData["uploadbinary_analysis_on_acmeair"])
Expand All @@ -69,7 +69,7 @@ describe.skip(["@tier3"], "Migrator Upload Binary Analysis", () => {
application.verifyAnalysisStatus(AnalysisStatuses.completed);
});

it("Bug MTA-1455: Custom rules with custom targets", function () {
it("Custom rules with custom targets", function () {
// Automated https://issues.redhat.com/browse/TACKLE-561
const application = new Analysis(
getRandomApplicationData("customRule_customTarget"),
Expand Down

0 comments on commit 06b0824

Please sign in to comment.