From 16836c602b4b3bbbb9457f919e1ec8cc11741d26 Mon Sep 17 00:00:00 2001 From: Ashok Menon Date: Thu, 11 Jul 2024 11:47:33 +0100 Subject: [PATCH] fixup: test_only for tests --- examples/tic-tac-toe/move/tests/owned_tests.move | 1 + examples/tic-tac-toe/move/tests/shared_tests.move | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/tic-tac-toe/move/tests/owned_tests.move b/examples/tic-tac-toe/move/tests/owned_tests.move index 76576db201508..4cc55f0f94de6 100644 --- a/examples/tic-tac-toe/move/tests/owned_tests.move +++ b/examples/tic-tac-toe/move/tests/owned_tests.move @@ -1,6 +1,7 @@ // Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 +#[test_only] module tic_tac_toe::owned_tests { use sui::test_scenario::{Self as ts, Scenario}; use sui::transfer::Receiving; diff --git a/examples/tic-tac-toe/move/tests/shared_tests.move b/examples/tic-tac-toe/move/tests/shared_tests.move index a9f53b345b03b..dbc86c0dfbfb7 100644 --- a/examples/tic-tac-toe/move/tests/shared_tests.move +++ b/examples/tic-tac-toe/move/tests/shared_tests.move @@ -1,6 +1,7 @@ // Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 +#[test_only] module tic_tac_toe::shared_tests { use sui::test_scenario::{Self as ts, Scenario}; use tic_tac_toe::shared as ttt;