Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
JiangZian committed Aug 11, 2020
1 parent ebb04ab commit 1e978c3
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package com.alibaba.csp.sentinel.demo.quarkus;

import com.alibaba.csp.sentinel.slots.block.flow.FlowRuleManager;
import com.alibaba.csp.sentinel.slots.clusterbuilder.ClusterBuilderSlot;
import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.AfterEach;
Expand All @@ -35,10 +34,10 @@ public void cleanUp() {
@Test
public void testSentinelJaxRsQuarkusAdapter() {
given()
.when().get("/hello/txt")
.then()
.statusCode(200)
.body(is("hello"));
.when().get("/hello/txt")
.then()
.statusCode(200)
.body(is("hello"));
given()
.when().get("/hello/txt")
.then()
Expand Down

0 comments on commit 1e978c3

Please sign in to comment.