From 5f901929700b2db9a8f02598263ea34e63f00801 Mon Sep 17 00:00:00 2001 From: joe-conigliaro Date: Wed, 23 Dec 2020 01:38:17 +1100 Subject: [PATCH] math: use full import module name in tests --- vlib/math/big/big_test.v | 2 +- vlib/math/fractions/approximations_test.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/math/big/big_test.v b/vlib/math/big/big_test.v index 9cfa7767ea..9126d73e1f 100644 --- a/vlib/math/big/big_test.v +++ b/vlib/math/big/big_test.v @@ -1,4 +1,4 @@ -import big +import math.big fn test_new_big() { n := big.new() diff --git a/vlib/math/fractions/approximations_test.v b/vlib/math/fractions/approximations_test.v index f688cc76f0..140d7755a0 100644 --- a/vlib/math/fractions/approximations_test.v +++ b/vlib/math/fractions/approximations_test.v @@ -1,7 +1,7 @@ // Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved. // Use of this source code is governed by an MIT license // that can be found in the LICENSE file. -import fractions +import math.fractions import math fn test_half() {