You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by al...@apache.org on 2019/01/16 16:40:37 UTC

[brooklyn-server] 25/31: Make BundleUtilTest public

This is an automated email from the ASF dual-hosted git repository.

aledsage pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git

commit 943f3b8ab7ce4a17235d10072c0d5ec00e6e2e86
Author: Paul Campbell <pc...@kemitix.net>
AuthorDate: Wed Oct 24 13:05:59 2018 +0100

    Make BundleUtilTest public
---
 .../java/org/apache/brooklyn/core/typereg/BundleTestUtil.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/src/test/java/org/apache/brooklyn/core/typereg/BundleTestUtil.java b/core/src/test/java/org/apache/brooklyn/core/typereg/BundleTestUtil.java
index a869514..04a2376 100644
--- a/core/src/test/java/org/apache/brooklyn/core/typereg/BundleTestUtil.java
+++ b/core/src/test/java/org/apache/brooklyn/core/typereg/BundleTestUtil.java
@@ -28,17 +28,17 @@ import java.util.Dictionary;
 import java.util.Hashtable;
 import java.util.Map;
 
-class BundleTestUtil {
+public class BundleTestUtil {
 
-    static Bundle newMockBundle(Map<String, String> rawHeaders) {
+    public static Bundle newMockBundle(Map<String, String> rawHeaders) {
         return newMockBundle(VersionedName.fromString("do.no.care:1.2.3"), rawHeaders);
     }
 
-    static Bundle newMockBundle(VersionedName name) {
+    public static Bundle newMockBundle(VersionedName name) {
         return newMockBundle(name, ImmutableMap.of());
     }
 
-    static Bundle newMockBundle(VersionedName name, Map<String, String> rawHeaders) {
+    public static Bundle newMockBundle(VersionedName name, Map<String, String> rawHeaders) {
         Dictionary<String, String> headers = new Hashtable<>(rawHeaders);
         Bundle result;
         try {