Skip to content

Commit e67f973

Browse files
DOC-5743 fixes to hide test imports
1 parent 7007619 commit e67f973

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

local_examples/tmp/BitMapsExample.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
// EXAMPLE: bitmap_tutorial
2-
// HIDE_START
32
package io.redis.examples;
43

5-
import org.junit.jupiter.api.Test;
64
import redis.clients.jedis.UnifiedJedis;
75
import redis.clients.jedis.args.BitOP;
8-
9-
6+
// REMOVE_START
7+
import org.junit.jupiter.api.Test;
108
import static org.junit.jupiter.api.Assertions.assertEquals;
119
import static org.junit.jupiter.api.Assertions.assertFalse;
1210
import static org.junit.jupiter.api.Assertions.assertTrue;
11+
// REMOVE_END
1312

1413
public class BitMapsExample {
1514

1615
@Test
1716
public void run() {
1817
UnifiedJedis jedis = new UnifiedJedis("redis://localhost:6379");
19-
// HIDE_END
2018

2119
// REMOVE_START
2220
jedis.del("pings:2024-01-01-00:00");

local_examples/tmp/Bitmap_tutorial.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
// EXAMPLE: bitmap_tutorial
2-
// HIDE_START
3-
2+
// REMOVE_START
43
using NRedisStack.Tests;
4+
// REMOVE_END
55
using StackExchange.Redis;
66

7-
// HIDE_END
87

98
// REMOVE_START
109
namespace Doc;

local_examples/tmp/dt-bitmap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// EXAMPLE: bitmap_tutorial
2-
// HIDE_START
2+
// REMOVE_START
33
import assert from 'assert';
4+
// REMOVE_END
45
import { createClient, RESP_TYPES } from 'redis';
56

67
const client = createClient({
@@ -11,7 +12,6 @@ const client = createClient({
1112
}
1213
});
1314
await client.connect();
14-
// HIDE_END
1515

1616
// REMOVE_START
1717
await client.flushDb();

0 commit comments

Comments
 (0)