Skip to content

Commit

Permalink
Fix runtime type clash
Browse files Browse the repository at this point in the history
Due to reasons that are not entierly clear to me when we run all the
unit tests some how types from `record_project_closed_rec_equiv` to
clashed with types defined in other unit tests. As a temperary
workaround I introduced a new package name for this.
  • Loading branch information
heshanpadmasiri committed Jun 19, 2024
1 parent 32e90e4 commit cd4dfb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
org = "testorg"
name = "recordproject"
name = "closedrecordproject"
version = "1.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
// specific language governing permissions and limitations
// under the License.

import recordproject.eq;
import recordproject.eq2;
import recordproject.req;
import recordproject.req2;
import closedrecordproject.eq;
import closedrecordproject.eq2;
import closedrecordproject.req;
import closedrecordproject.req2;

public type person1 record {|
int age = 0;
Expand Down

0 comments on commit cd4dfb5

Please sign in to comment.