Skip to content

Commit

Permalink
Fix data not deleted in itest
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasponce committed Feb 9, 2016
1 parent 37a504a commit 56228d0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates
* Copyright 2015-2016 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -70,6 +70,9 @@ class DampeningITest extends AbstractITestBase {

resp = client.delete(path: "triggers/test-trigger-6/dampenings/" + d.getDampeningId())
assertEquals(200, resp.status)

client.delete(path: "triggers/test-trigger-6")
assertEquals(200, resp.status)
}

}

0 comments on commit 56228d0

Please sign in to comment.